Files
pezkuwi-sdk/bizinikiwi/primitives/tracing/Cargo.toml
T
pezkuwichain 479010094e fix(ci): resolve all quick-checks failures
- 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)
2026-01-04 17:22:12 +03:00

46 lines
1.1 KiB
TOML

[package]
name = "pezsp-tracing"
version = "16.0.0"
license = "Apache-2.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Instrumentation primitives and macros for Bizinikiwi."
readme = "README.md"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
# let's default to wasm32
default-target = "wasm32-unknown-unknown"
# with the tracing enabled
features = ["with-tracing"]
# allowing for linux-gnu here, too, allows for `std` to show up as well
targets = ["wasm32-unknown-unknown", "x86_64-unknown-linux-gnu"]
[dependencies]
codec = { features = ["derive"], workspace = true }
regex = { workspace = true, optional = true }
tracing = { workspace = true }
tracing-core = { workspace = true }
tracing-subscriber = { workspace = true, optional = true, features = [
"env-filter",
"time",
"tracing-log",
] }
[features]
default = [ "std" ]
with-tracing = [ "codec/derive", "codec/full" ]
std = [
"codec/std",
"regex",
"tracing-core/std",
"tracing-subscriber",
"tracing/std",
"with-tracing",
]