Files
pezkuwi-sdk/bizinikiwi/primitives/session/Cargo.toml
T

44 lines
1.0 KiB
TOML

[package]
name = "pezsp-session"
version = "27.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "Primitives for sessions"
readme = "README.md"
documentation = "https://docs.rs/pezsp-session"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { features = ["derive"], workspace = true }
scale-info = { features = ["derive"], workspace = true }
pezsp-api = { workspace = true }
pezsp-core = { workspace = true }
pezsp-keystore = { optional = true, workspace = true }
pezsp-runtime = { optional = true, workspace = true }
pezsp-staking = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"scale-info/std",
"pezsp-api/std",
"pezsp-core/std",
"pezsp-keystore/std",
"pezsp-runtime/std",
"pezsp-staking/std",
]
runtime-benchmarks = [
"pezsp-api/runtime-benchmarks",
"pezsp-runtime?/runtime-benchmarks",
"pezsp-staking/runtime-benchmarks",
]