mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
68 lines
1.8 KiB
TOML
68 lines
1.8 KiB
TOML
[package]
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
description = "Snowbridge Inbound Queue Primitives"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
name = "snowbridge-inbound-queue-primitives"
|
|
repository.workspace = true
|
|
version = "0.9.0"
|
|
|
|
[package.metadata.polkadot-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
alloy-core = { workspace = true, features = ["sol-types"] }
|
|
codec = { workspace = true }
|
|
impl-trait-for-tuples = { workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
snowbridge-beacon-primitives = { workspace = true }
|
|
snowbridge-core = { workspace = true }
|
|
snowbridge-verification-primitives = { workspace = true }
|
|
|
|
hex = { workspace = true, default-features = false }
|
|
hex-literal = { workspace = true, default-features = true }
|
|
|
|
[dev-dependencies]
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"alloy-core/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"hex/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"snowbridge-beacon-primitives/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-verification-primitives/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|