53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[package]
|
|
name = "pez-revive-dev-runtime"
|
|
description = "A solochain dev runtime for revive."
|
|
version = "0.1.0"
|
|
license = "Apache-2.0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
documentation = "https://docs.rs/pez-revive-dev-runtime"
|
|
|
|
[dependencies]
|
|
array-bytes = { workspace = true }
|
|
codec = { workspace = true }
|
|
pezkuwi-sdk = { workspace = true, features = [
|
|
"pezpallet-balances",
|
|
"pezpallet-revive",
|
|
"pezpallet-sudo",
|
|
"pezpallet-timestamp",
|
|
"pezpallet-transaction-payment",
|
|
"pezpallet-transaction-payment-rpc-runtime-api",
|
|
"pezkuwi-runtime-common",
|
|
"pezsp-api",
|
|
"pezsp-keyring",
|
|
"pezsp-weights",
|
|
"runtime",
|
|
"teyrchains-common",
|
|
"with-tracing",
|
|
] }
|
|
pezsp-runtime = { workspace = true }
|
|
scale-info = { workspace = true }
|
|
serde_json = { workspace = true, default-features = false, features = [
|
|
"alloc",
|
|
] }
|
|
pezsp-debug-derive = { workspace = true, features = ["force-debug"] }
|
|
|
|
[build-dependencies]
|
|
pezkuwi-sdk = { optional = true, workspace = true, features = [
|
|
"bizinikiwi-wasm-builder",
|
|
] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezkuwi-sdk/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
"serde_json/std",
|
|
"pezsp-debug-derive/std",
|
|
]
|
|
runtime-benchmarks = ["pezkuwi-sdk/runtime-benchmarks"]
|