Files
pezkuwi-sdk/bridges/primitives/runtime/Cargo.toml
T

66 lines
1.7 KiB
TOML

[package]
name = "pezbp-runtime"
description = "Primitives that may be used at (bridges) runtime level."
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
documentation = "https://docs.rs/pezbp-runtime"
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
codec = { workspace = true }
hash-db = { workspace = true }
impl-trait-for-tuples = { workspace = true }
num-traits = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
serde = { features = ["alloc", "derive"], workspace = true }
tracing = { workspace = true }
# Bizinikiwi Dependencies
pezframe-support = { workspace = true }
pezframe-system = { workspace = true }
pezsp-core = { workspace = true }
pezsp-io = { workspace = true }
pezsp-runtime = { features = ["serde"], workspace = true }
pezsp-state-machine = { workspace = true }
pezsp-std = { workspace = true }
pezsp-trie = { workspace = true }
trie-db = { workspace = true }
[dev-dependencies]
hex-literal = { workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"codec/std",
"pezframe-support/std",
"pezframe-system/std",
"hash-db/std",
"num-traits/std",
"scale-info/std",
"serde/std",
"pezsp-core/std",
"pezsp-io/std",
"pezsp-runtime/std",
"pezsp-state-machine/std",
"pezsp-std/std",
"pezsp-trie/std",
"tracing/std",
"trie-db/std",
]
test-helpers = []
runtime-benchmarks = [
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-state-machine/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
]