git.delta.rocks / unique-network / refs/commits / 1a0920c2b432

difftreelog

build specify evm-coder dependencies

Yaroslav Bolyukin2021-06-02parent: #4a53d88.patch.diff
in: master

3 files changed

modifiedCargo.lockdiffbeforeafterboth
before · Cargo.lock
780 packageslockfile v3
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,6 +4,8 @@
     'node',
     'pallets/nft',
     'runtime',
+    'crates/evm-coder',
+    'crates/evm-coder-macros',
 ]
 [profile.release]
 panic = 'unwind'
modifiedpallets/nft/Cargo.tomldiffbeforeafterboth
--- a/pallets/nft/Cargo.toml
+++ b/pallets/nft/Cargo.toml
@@ -41,6 +41,9 @@
 ethereum = { default-features = false, version = "0.7.1" }
 rlp = { default-features = false, version = "0.5.0" }
 
+evm-coder = { default-features = false, path = "../../crates/evm-coder" }
+primitive-types = { version = "0.9.0", default-features = false }
+
 hex-literal = "0.3.1"
 
 [features]
@@ -64,5 +67,7 @@
     'rlp/std',
 
     'ethereum-tx-sign',
+    'primitive-types/std',
+    'evm-coder/std',
 ]
 runtime-benchmarks = ["frame-benchmarking"]