-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
26 lines (24 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "ethereum_abi"
version = "0.4.0"
authors = ["Felipe Rosa <[email protected]>"]
edition = "2018"
description = "Ethereum Smart Contract ABI parsing library"
documentation = "https://docs.rs/ethereum_abi"
readme = "README.md"
repository = "https://github.com/FelipeRosa/rust-ethereum-abi"
license = "MIT"
keywords = ["abi", "ethereum", "solidity", "web3"]
[dependencies]
anyhow = { version = "1.0", default-features = false, features = ["std"] }
ethereum-types = { version = "0.14.0", default-features = false, features = ["std"] }
hex = { version = "0.4", default-features = false, features = ["std"] }
nom = { version = "7.0", default-features = false, features = ["std"] }
regex = { version = "1.5", default-features = false, features = ["std"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
tiny-keccak = { version = "2.0", default-features = false, features = ["keccak"] }
[dev-dependencies]
pretty_assertions = "1.0"
rand = "0.8"
ethereum-types = "0.14.0"