479010094e
- Remove missing cli crate from workspace members - Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml - Fix Rust import ordering with cargo fmt - Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
39 lines
873 B
TOML
39 lines
873 B
TOML
[package]
|
|
name = "pezsp-timestamp"
|
|
version = "26.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi core types and inherents for timestamps."
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = { optional = true, workspace = true }
|
|
codec = { features = ["derive"], workspace = true }
|
|
pezsp-inherents = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
thiserror = { optional = true, workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"async-trait",
|
|
"codec/std",
|
|
"pezsp-inherents/std",
|
|
"pezsp-runtime/std",
|
|
"thiserror",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|