mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "sp-tracing"
|
|
version = "16.0.0"
|
|
license = "Apache-2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Instrumentation primitives and macros for Substrate."
|
|
readme = "README.md"
|
|
|
|
[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]
|
|
sp-std = { path = "../std", default-features = false }
|
|
codec = { version = "3.6.1", package = "parity-scale-codec", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
tracing = { version = "0.1.29", default-features = false }
|
|
tracing-core = { version = "0.1.32", default-features = false }
|
|
tracing-subscriber = { version = "0.2.25", optional = true, features = [
|
|
"tracing-log",
|
|
] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
with-tracing = ["codec/derive", "codec/full"]
|
|
std = [
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"tracing-core/std",
|
|
"tracing-subscriber",
|
|
"tracing/std",
|
|
"with-tracing",
|
|
]
|