mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
85 lines
2.7 KiB
TOML
85 lines
2.7 KiB
TOML
[package]
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
description = "Snowbridge System Pallet V2"
|
|
edition = { workspace = true }
|
|
license = "Apache-2.0"
|
|
name = "snowbridge-pallet-system-v2"
|
|
repository = { workspace = true }
|
|
version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.polkadot-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, features = ["derive"] }
|
|
frame-benchmarking = { workspace = true, optional = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
log = { workspace = true }
|
|
pallet-xcm = { workspace = true }
|
|
scale-info = { workspace = true, features = ["derive"] }
|
|
snowbridge-core = { workspace = true }
|
|
snowbridge-outbound-queue-primitives = { workspace = true }
|
|
snowbridge-pallet-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { workspace = true, default-features = true }
|
|
pallet-balances = { workspace = true, default-features = true }
|
|
polkadot-primitives = { workspace = true, default-features = true }
|
|
snowbridge-pallet-outbound-queue-v2 = { workspace = true, default-features = true }
|
|
snowbridge-test-utils = { workspace = true }
|
|
sp-keyring = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"polkadot-primitives/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"snowbridge-pallet-outbound-queue-v2/runtime-benchmarks",
|
|
"snowbridge-pallet-system/runtime-benchmarks",
|
|
"snowbridge-test-utils/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-xcm/std",
|
|
"scale-info/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-outbound-queue-primitives/std",
|
|
"snowbridge-pallet-system/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-xcm/try-runtime",
|
|
"snowbridge-pallet-outbound-queue-v2/try-runtime",
|
|
"snowbridge-pallet-system/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|