[dependencies.Hconfig]
optional = true
version = "2.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.backtrace]
features = ["std"]
version = "0.3"
[dependencies.dashmap]
version = "7.0.0-rc2"
[dependencies.log]
features = ["std"]
optional = true
version = "0.4.27"
[dependencies.owo-colors]
version = "4.2"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1.11"
[dependencies.singletonThread]
version = "2.1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
features = ["macros", "formatting"]
version = "0.3"
[dependencies.tracing]
optional = true
version = "0.1.41"
[dependencies.tracing-log]
optional = true
version = "0.2.0"
[dependencies.tracing-subscriber]
features = ["registry", "env-filter"]
optional = true
version = "0.3.19"
[features]
default = ["default_module"]
default_module = []
hconfig = ["Hconfig", "default_module"]
log_consumer = ["log"]
tracing_consumer = ["tracing-subscriber", "tracing-log", "tracing"]
[lib]
name = "Htrace"
path = "src/lib.rs"
[package]
authors = ["Hyultis <hyultis@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::debugging"]
description = "simple tracing system"
edition = "2024"
keywords = ["tracing", "trace", "log", "logging"]
license = "MIT OR Apache-2.0"
name = "Htrace"
readme = "README.md"
repository = "https://github.com/hyultis/rust_Htrace"
version = "2.0.0"
[[test]]
name = "formater"
path = "tests/formater.rs"
[[test]]
name = "hconfig"
path = "tests/hconfig.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[test]]
name = "trace"
path = "tests/trace.rs"
[[test]]
name = "tracing"
path = "tests/tracing.rs"