[package]
edition = "2024"
rust-version = "1.96.1"
name = "tiny-tracing"
version = "0.1.0"
authors = ["containerscrew info@containerscrew.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple rusty log library (tracing-subscriber wrapper)"
documentation = "https://docs.rs/tiny-tracing"
readme = "README.md"
keywords = [
"logging",
"tracing",
"tracing-subscriber",
"logger",
]
categories = ["development-tools::debugging"]
license-file = "LICENSE"
repository = "https://github.com/containerscrew/tiny-tracing"
[lib]
name = "tiny_tracing"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "env_filter"
path = "examples/env_filter.rs"
[[example]]
name = "json"
path = "examples/json.rs"
[[test]]
name = "logger"
path = "tests/logger.rs"
[dependencies.chrono]
version = "0.4.45"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"json",
"env-filter",
]