Skip to content
Snippets Groups Projects
Commit 84991146 authored by Nikolay Volf's avatar Nikolay Volf Committed by GitHub
Browse files

don't use default features to drop some dependencies (#5658)

parent 4db45a85
No related merge requests found
......@@ -1220,33 +1220,6 @@ dependencies = [
"libc",
]
[[package]]
name = "ethbloom"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e7abcddbdd5db30aeed4deb586adc4824e6c247e2f7238d1187f752893f096b"
dependencies = [
"crunchy",
"fixed-hash",
"impl-rlp",
"impl-serde 0.3.0",
"tiny-keccak 2.0.2",
]
[[package]]
name = "ethereum-types"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "964c23cdee0ca07d5be2a628b46d5c11a2134ce554a8c16d8dbc2db647e4fd4d"
dependencies = [
"ethbloom",
"fixed-hash",
"impl-rlp",
"impl-serde 0.3.0",
"primitive-types",
"uint",
]
[[package]]
name = "evm"
version = "0.16.1"
......@@ -4788,10 +4761,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e42755f26e5ea21a6a819d9e63cbd70713e9867a2b767ec2cc65ca7659532c5"
dependencies = [
"cfg-if",
"ethereum-types",
"hashbrown",
"impl-trait-for-tuples",
"lru",
"parity-util-mem-derive",
"parking_lot 0.10.2",
"primitive-types",
......
......@@ -17,7 +17,7 @@ log = "0.4.8"
sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
parity-util-mem = "0.6"
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
parity-util-mem-derive = "0.1.0"
[dev-dependencies]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment