[package]
name = "gix-trace"
description = "A crate to provide minimal `tracing` support that can be turned off to zero cost"
repository = "https://github.com/Byron/gitoxide"
version = "0.1.1"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.65"
[lib]
doctest = false
test = false
[features]
default = []
tracing = [ "dep:tracing-core" ]
tracing-detail = [ ]
[dependencies]
tracing-core = { version = "0.1.31", optional = true }
document-features = { version = "0.2.0", optional = true }
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]
rustdoc-args = ["--cfg", "docsrs"]