Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Jul 22, 2023
1 parent 9ad114d commit 27983b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions modules/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ module-dex = { path = "../dex", default-features = false, optional = true }

xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0", default-features = false }

# we don't directly depends on this but need frame-benchmarking/std to fix build
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "release-v1.0.0" , default-features = false, optional = true }

[dev-dependencies]
hex = "0.4"
env_logger = "0.9.0"
Expand Down Expand Up @@ -81,7 +84,8 @@ std = [
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"xcm-builder/std"
"xcm-builder/std",
"frame-benchmarking/std",
]
with-ethereum-compatibility = []
try-runtime = [
Expand All @@ -108,7 +112,7 @@ bench = [
"pallet-balances",
"serde_json",
"sp-runtime/runtime-benchmarks",
"xcm-builder/runtime-benchmarks"
"xcm-builder/runtime-benchmarks",
]
evm-tests = [
"primitives/evm-tests"
Expand Down

0 comments on commit 27983b1

Please sign in to comment.