ethers-rs/Cargo.toml

30 lines
915 B
TOML
Raw Normal View History

2020-05-22 18:37:21 +00:00
[package]
name = "ethers"
version = "0.1.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
[dependencies]
2020-05-24 16:33:24 +00:00
ethereum-types = { version = "0.9.2", default-features = false, features = ["serialize"] }
url = { version = "2.1.1", default-features = false }
2020-05-22 18:37:21 +00:00
async-trait = "0.1.31"
2020-05-24 16:33:24 +00:00
reqwest = { version = "0.10.4", default-features = false, features = ["json"] }
serde = { version = "1.0.110", default-features = false, features = ["derive"] }
2020-05-22 18:37:21 +00:00
serde_json = "1.0.53"
thiserror = "1.0.19"
2020-05-23 00:01:20 +00:00
rustc-hex = "2.1.0"
rand = "0.5.1" # this should be the same rand crate version as the one in secp
secp256k1 = { version = "0.17.2", features = ["recovery", "rand"] }
secrecy = "0.6.0"
zeroize = "1.1.0"
tiny-keccak = "2.0.2"
futures = "0.3.5"
solc = { git = "https://github.com/paritytech/rust_solc "}
rlp = "0.4.5"
2020-05-22 18:37:21 +00:00
[dev-dependencies]
tokio = { version = "0.2.21", features = ["macros"] }
2020-05-23 00:01:20 +00:00
failure = "0.1.8"