mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 11:38:01 +00:00
02c7433baa
Bumps [tracing-core](https://github.com/tokio-rs/tracing) from 0.1.21 to 0.1.26. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-core-0.1.21...tracing-core-0.1.26) --- updated-dependencies: - dependency-name: tracing-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "sp-tracing"
|
|
version = "5.0.0"
|
|
license = "Apache-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Instrumentation primitives and macros for Substrate."
|
|
readme = "README.md"
|
|
|
|
[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 = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
|
|
|
|
[dependencies]
|
|
sp-std = { version = "4.0.0", path = "../std", default-features = false }
|
|
codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
tracing = { version = "0.1.29", default-features = false }
|
|
tracing-core = { version = "0.1.26", default-features = false }
|
|
tracing-subscriber = { version = "0.2.25", optional = true, features = [
|
|
"tracing-log",
|
|
] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
with-tracing = ["codec/derive", "codec/full"]
|
|
std = [
|
|
"with-tracing",
|
|
"tracing/std",
|
|
"tracing-core/std",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"tracing-subscriber",
|
|
]
|