mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
9d6c0f446a
Co-authored-by: Bastian Köcher <git@kchr.de>
77 lines
2.8 KiB
TOML
77 lines
2.8 KiB
TOML
[package]
|
|
name = "snowbridge-pallet-outbound-queue"
|
|
description = "Snowbridge Outbound Queue Pallet"
|
|
version = "0.2.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
serde = { features = ["alloc", "derive"], workspace = true }
|
|
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"] }
|
|
|
|
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", default-features = false, features = ["serde"] }
|
|
snowbridge-outbound-queue-merkle-tree = { path = "merkle-tree", default-features = false }
|
|
ethabi = { package = "ethabi-decode", version = "1.0.0", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
pallet-message-queue = { path = "../../../../substrate/frame/message-queue", default-features = false }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
|
|
[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",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bridge-hub-common/runtime-benchmarks",
|
|
"frame-benchmarking",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"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",
|
|
]
|