45 lines
983 B
TOML
45 lines
983 B
TOML
[package]
|
|
name = "cumulus-test-relay-sproof-builder"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Mocked relay state proof builder for testing Cumulus."
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
|
|
# Substrate
|
|
sp-runtime = { workspace = true }
|
|
sp-state-machine = { workspace = true }
|
|
sp-trie = { workspace = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-primitives = { workspace = true }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"cumulus-primitives-core/std",
|
|
"pezkuwi-primitives/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine/std",
|
|
"sp-trie/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-state-machine/runtime-benchmarks",
|
|
"sp-trie/runtime-benchmarks",
|
|
]
|