Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

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

23 changes: 22 additions & 1 deletion bridges/snowbridge/pallets/ethereum-client/fixtures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,33 @@ snowbridge-verification-primitives = { workspace = true }
sp-core = { workspace = true }
sp-std = { workspace = true }

# Used only by the dynamic benchmark-fixture builder; gated by the
# `runtime-benchmarks` feature below. The dynamic builder is the inverse of
# `snowbridge_pallet_ethereum_client::Pallet::verify` and is shared by the
# inbound-queue v1, inbound-queue v2, and outbound-queue v2 benchmarks.
alloy-consensus = { workspace = true, optional = true }
alloy-primitives = { workspace = true, optional = true }
alloy-rlp = { workspace = true, optional = true }
alloy-trie = { workspace = true, optional = true }
sp-io = { workspace = true, optional = true }

[features]
default = ["std"]
std = [
"alloy-consensus?/std",
"alloy-primitives?/std",
"alloy-rlp?/std",
"alloy-trie?/std",
"snowbridge-beacon-primitives/std",
"snowbridge-verification-primitives/std",
"sp-core/std",
"sp-io?/std",
"sp-std/std",
]
runtime-benchmarks = []
runtime-benchmarks = [
"alloy-consensus",
"alloy-primitives",
"alloy-rlp",
"alloy-trie",
"sp-io",
]
Loading
Loading