mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-08-06 18:55:50 +00:00
18d53dbf91
# Description Adds Snowbridge to the Rococo bridge hub runtime. Includes config changes required in Rococo asset hub. --------- Co-authored-by: Alistair Singh <alistair.singh7@gmail.com> Co-authored-by: ron <yrong1997@gmail.com> Co-authored-by: Vincent Geddes <vincent.geddes@hey.com> Co-authored-by: claravanstaden <Cats 4 life!>
79 lines
3.0 KiB
TOML
79 lines
3.0 KiB
TOML
[package]
|
|
name = "snowbridge-outbound-queue"
|
|
description = "Snowbridge Outbound Queue"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
repository = "https://github.com/Snowfork/snowbridge"
|
|
license = "Apache-2.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.188", features = ["alloc", "derive"], default-features = false }
|
|
codec = { version = "3.6.1", package = "parity-scale-codec", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
hex-literal = { version = "0.4.1", optional = true }
|
|
|
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false }
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false }
|
|
sp-arithmetic = { path = "../../../../../substrate/primitives/arithmetic", default-features = false }
|
|
|
|
bridge-hub-common = { path = "../../../../../cumulus/parachains/runtimes/bridge-hubs/common", default-features = false }
|
|
|
|
snowbridge-core = { path = "../../primitives/core", features = ["serde"], default-features = false }
|
|
snowbridge-outbound-queue-merkle-tree = { path = "merkle-tree", default-features = false }
|
|
ethabi = { git = "https://github.com/snowfork/ethabi-decode.git", package = "ethabi-decode", branch = "master", default-features = false }
|
|
|
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false }
|
|
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
|
hex-literal = { version = "0.4.1" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bridge-hub-common/std",
|
|
"codec/std",
|
|
"ethabi/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-message-queue/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-outbound-queue-merkle-tree/std",
|
|
"sp-arithmetic/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bridge-hub-common/runtime-benchmarks",
|
|
"frame-benchmarking",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"hex-literal",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-message-queue/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|