git.delta.rocks / unique-network / refs/commits / 46a93c1d05ed

difftreelog

fix nostd build of evm-coder

Yaroslav Bolyukin2021-07-20parent: #9b94d7c.patch.diff
in: master

1 file changed

modifiedcrates/evm-coder/Cargo.tomldiffbeforeafterboth
8primitive-types = { version = "0.9", default-features = false }8primitive-types = { version = "0.9", default-features = false }
9hex-literal = "0.3"9hex-literal = "0.3"
10ethereum = { version = "0.7.1", default-features = false }10ethereum = { version = "0.7.1", default-features = false }
11evm-core = { git = "https://github.com/usetech-llc/evm.git", branch="precompile-output-parachain" }11evm-core = { default-features = false, git = "https://github.com/usetech-llc/evm.git", branch="precompile-output-parachain" }
12impl-trait-for-tuples = "0.2.1"12impl-trait-for-tuples = "0.2.1"
1313
14[dev-dependencies]14[dev-dependencies]
15hex = "0.4.3"15hex = "0.4.3"
1616
17[features]17[features]
18default = ["std"]18default = ["std"]
19std = ["ethereum/std", "primitive-types/std"]19std = ["ethereum/std", "primitive-types/std", "evm-core/std"]