rlg 0.0.3

A Rust library that implements application-level logging with a simple, readable output format.
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"
[dependencies.dtt]
version = "0.0.5"

[dependencies.hostname]
version = "0.3.1"

[dependencies.serde_json]
version = "1.0.114"

[dependencies.tokio]
features = ["full"]
version = "1.36.0"

[dependencies.vrd]
version = "0.0.5"
[dev-dependencies.criterion]
version = "0.5.1"

[features]
default = []

[lib]
crate-type = ["lib"]
name = "rlg"
path = "src/lib.rs"

[package]
authors = ["RustLogs Contributors"]
categories = ["asynchronous", "development-tools::debugging", "development-tools", "data-structures"]
description = "    A Rust library that implements application-level logging with a simple,\n    readable output format.\n"
documentation = "https://docs.rs/rlg"
edition = "2021"
exclude = ["/.git/*", "/.github/*", "/.gitignore", "/.vscode/*"]
homepage = "https://rustlogs.com/"
include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**"]
keywords = ["debugging", "log", "rlg", "logging", "tracing"]
license = "MIT OR Apache-2.0"
name = "rlg"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/rlg/"
rust-version = "1.71.1"
version = "0.0.3"
[package.metadata.docs.rs]
all-features = true
[profile.dev]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
strip = false

[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"

[profile.test]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false