lints.workspace = true
[package]
name = "gix-trace"
description = "A crate to provide minimal `tracing` support that can be turned off to zero cost"
repository = "https://github.com/GitoxideLabs/gitoxide"
version = "0.1.11"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65"
include = ["src/**/*", "LICENSE-*"]
[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"]