69 lines
1.7 KiB
TOML
69 lines
1.7 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
name = "pallet-message-queue"
|
|
version = "31.0.0"
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME pallet to queue and process messages"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
environmental = { workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { optional = true, features = [
|
|
"derive",
|
|
], workspace = true, default-features = true }
|
|
|
|
sp-arithmetic = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-weights = { workspace = true }
|
|
|
|
frame-benchmarking = { optional = true, workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
frame-support = { workspace = true, features = ["experimental"] }
|
|
rand = { workspace = true, default-features = true }
|
|
rand_distr = { workspace = true }
|
|
sp-crypto-hashing = { workspace = true, default-features = true }
|
|
sp-tracing = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"environmental/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"sp-arithmetic/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-tracing/std",
|
|
"sp-weights/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|