bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
106 lines
3.2 KiB
TOML
106 lines
3.2 KiB
TOML
[package]
|
|
name = "pezsnowbridge-pezpallet-inbound-queue-v2"
|
|
description = "Snowbridge Inbound Queue Pallet V2"
|
|
version = "0.2.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
documentation.workspace = true
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.pezkuwi-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
alloy-core = { workspace = true, features = ["sol-types"] }
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { optional = true, workspace = true, default-features = true }
|
|
tracing = { workspace = true }
|
|
|
|
pezframe-benchmarking = { optional = true, workspace = true }
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-balances = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-std = { workspace = true }
|
|
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
pezsnowbridge-beacon-primitives = { workspace = true }
|
|
pezsnowbridge-core = { workspace = true }
|
|
pezsnowbridge-inbound-queue-primitives = { workspace = true }
|
|
pezsnowbridge-pezpallet-inbound-queue-v2-fixtures = { optional = true, workspace = true }
|
|
|
|
bp-relayers = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { workspace = true, default-features = true }
|
|
pezframe-benchmarking = { workspace = true, default-features = true }
|
|
pezsnowbridge-test-utils = { workspace = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"alloy-core/std",
|
|
"bp-relayers/std",
|
|
"codec/std",
|
|
"pezframe-benchmarking/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-balances/std",
|
|
"pezsnowbridge-beacon-primitives/std",
|
|
"pezsnowbridge-core/std",
|
|
"pezsnowbridge-inbound-queue-primitives/std",
|
|
"pezsnowbridge-pezpallet-inbound-queue-v2-fixtures?/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-std/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bp-relayers/runtime-benchmarks",
|
|
"pezframe-benchmarking",
|
|
"pezframe-benchmarking/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezsnowbridge-beacon-primitives/runtime-benchmarks",
|
|
"pezsnowbridge-core/runtime-benchmarks",
|
|
"pezsnowbridge-inbound-queue-primitives/runtime-benchmarks",
|
|
"pezsnowbridge-pezpallet-inbound-queue-v2-fixtures/runtime-benchmarks",
|
|
"pezsnowbridge-test-utils/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezsnowbridge-inbound-queue-primitives/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|