@@ -8,6 +8,8 @@ version = "1.2.0"
88targets = [' x86_64-unknown-linux-gnu' ]
99
1010[dependencies ]
11+ evm-macro = { path = " src/evm/macro" , default-features = false }
12+ evm-utils = { path = " src/evm/utils" , default-features = false }
1113
1214# Substrate dependencies
1315sp-std = { git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.31" , default-features = false }
@@ -30,6 +32,7 @@ clients-info = { path = "../../../crates/clients-info", default-features = false
3032collator-selection = { path = " ../../../crates/collator-selection" , default-features = false }
3133currency = { path = " ../../../crates/currency" , default-features = false }
3234democracy = { path = " ../../../crates/democracy" , default-features = false }
35+ dex-stable = { path = " ../../../crates/dex-stable" , default-features = false }
3336escrow = { path = " ../../../crates/escrow" , default-features = false }
3437fee = { path = " ../../../crates/fee" , default-features = false }
3538issue = { path = " ../../../crates/issue" , default-features = false }
@@ -58,6 +61,7 @@ orml-xcm-support = { git = "https://github.com/open-web3-stack/open-runtime-modu
5861orml-unknown-tokens = { git = " https://github.com/open-web3-stack/open-runtime-module-library" , rev = " 3fcd3cf9e63fe80fd9671912833a900ba09d1cc0" , default-features = false }
5962
6063# Frontier dependencies
64+ fp-evm = { git = " https://github.com/paritytech/frontier" , branch = " polkadot-v0.9.42" , default-features = false }
6165pallet-base-fee = { git = " https://github.com/paritytech/frontier" , branch = " polkadot-v0.9.42" , default-features = false }
6266pallet-ethereum = { git = " https://github.com/paritytech/frontier" , branch = " polkadot-v0.9.42" , default-features = false }
6367pallet-evm = { git = " https://github.com/paritytech/frontier" , branch = " polkadot-v0.9.42" , default-features = false }
@@ -73,6 +77,9 @@ pallet-evm-precompile-simple = { git = "https://github.com/paritytech/frontier",
7377[features ]
7478default = [" std" ]
7579std = [
80+ " evm-macro/std" ,
81+ " evm-utils/std" ,
82+
7683 " sp-std/std" ,
7784 " sp-runtime/std" ,
7885 " sp-core/std" ,
@@ -91,6 +98,7 @@ std = [
9198 " currency/std" ,
9299 " collator-selection/std" ,
93100 " democracy/std" ,
101+ " dex-stable/std" ,
94102 " escrow/std" ,
95103 " fee/std" ,
96104 " issue/std" ,
@@ -117,6 +125,7 @@ std = [
117125 " orml-xcm-support/std" ,
118126 " orml-unknown-tokens/std" ,
119127
128+ " fp-evm/std" ,
120129 " pallet-base-fee/std" ,
121130 " pallet-ethereum/std" ,
122131 " pallet-evm/std" ,
0 commit comments