difftreelog
misk: fix after rebase
in: master
2 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1057,6 +1057,16 @@
]
[[package]]
+name = "concat-idents"
+version = "1.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4b6f90860248d75014b7b103db8fee4f291c07bfb41306cdf77a0a5ab7a10d2f"
+dependencies = [
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "concurrent-queue"
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2323,6 +2333,7 @@
name = "evm-coder"
version = "0.1.3"
dependencies = [
+ "concat-idents",
"ethereum",
"evm-coder-procedural",
"evm-core",
crates/evm-coder/Cargo.tomldiffbeforeafterboth1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8# evm-coder reexports those proc-macro9evm-coder-procedural = { path = "./procedural" }10# Evm uses primitive-types for H160, H256 and others11primitive-types = { version = "0.11.1", default-features = false }12# Evm doesn't have reexports for log and others13ethereum = { version = "0.12.0", default-features = false }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16# Error types for execution17evm-core = { default-features = false , git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }18# We have tuple-heavy code in solidity.rs19impl-trait-for-tuples = "0.2.2"2021[dev-dependencies]22# We want to assert some large binary blobs equality in tests23hex = "0.4.3"24hex-literal = "0.3.4"25similar-asserts = "1.4.2"2627[features]28default = ["std"]29std = ["ethereum/std", "primitive-types/std", "evm-core/std", "frame-support/std"]1[package]2name = "evm-coder"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8# evm-coder reexports those proc-macro9evm-coder-procedural = { path = "./procedural" }10# Evm uses primitive-types for H160, H256 and others11primitive-types = { version = "0.11.1", default-features = false }12# Evm doesn't have reexports for log and others13ethereum = { version = "0.12.0", default-features = false }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16# Error types for execution17evm-core = { default-features = false , git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" }18# We have tuple-heavy code in solidity.rs19impl-trait-for-tuples = "0.2.2"2021[dev-dependencies]22# We want to assert some large binary blobs equality in tests23hex = "0.4.3"24hex-literal = "0.3.4"25similar-asserts = "1.4.2"26concat-idents = "1.1.3"2728[features]29default = ["std"]30std = ["ethereum/std", "primitive-types/std", "evm-core/std", "frame-support/std"]