ethers-rs/Cargo.toml

45 lines
1.6 KiB
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[workspace]
2020-05-22 18:37:21 +00:00
2020-05-26 09:37:31 +00:00
members = [
# "./crates/ethers",
2020-05-26 10:37:17 +00:00
"./crates/ethers-abi",
2020-05-26 09:37:31 +00:00
# "./crates/ethers-contract",
# "./crates/ethers-derive",
2020-05-26 09:52:15 +00:00
"./crates/ethers-providers",
2020-05-26 10:24:19 +00:00
"./crates/ethers-signers",
2020-05-26 09:37:31 +00:00
"./crates/ethers-types",
2020-05-26 09:52:15 +00:00
"./crates/ethers-utils",
2020-05-26 09:37:31 +00:00
]
2020-05-23 00:01:20 +00:00
2020-05-26 09:37:31 +00:00
# [dependencies]
# ethers-derive = { path = "ethers-derive", optional = true }
#
# ethereum-types = { version = "0.9.2", default-features = false, features = ["serialize"] }
# url = { version = "2.1.1", default-features = false }
# async-trait = { version = "0.1.31", default-features = false }
# reqwest = { version = "0.10.4", default-features = false, features = ["json", "rustls-tls"] }
# serde = { version = "1.0.110", default-features = false, features = ["derive"] }
# serde_json = { version = "1.0.53", default-features = false }
# thiserror = { version = "1.0.19", default-features = false }
# rustc-hex = { version = "2.1.0", default-features = false }
# rand = { version = "0.5.1", default-features = false } # this should be the same rand crate version as the one in secp
# secp256k1 = { version = "0.17.2", default-features = false, features = ["std", "recovery", "rand"] }
# zeroize = { version = "1.1.0", default-features = false }
# tiny-keccak = { version = "2.0.2", default-features = false }
#
# solc = { git = "https://github.com/paritytech/rust_solc", optional = true }
# rlp = "0.4.5"
# ethabi = "12.0.0"
# bincode = "1.2.1"
# arrayvec = "0.5.1"
#
# [dev-dependencies]
# tokio = { version = "0.2.21", features = ["macros"] }
# failure = "0.1.8"
# rand = { version = "0.5.1" }
#
# [features]
# default = ["derive"]
# derive = ["ethers-derive"]
#