
Reimplemented logic from `env_logger` to parse log configuration from environment variables. Had to re-implement instead of using `env_filter` crate that `env_logger` uses, as it does not export the information required to integrate it. Release Notes: - N/A *or* Added/Fixed/Improved ...
20 lines
293 B
TOML
20 lines
293 B
TOML
[package]
|
|
name = "zlog"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/zlog.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
log.workspace = true
|
|
workspace-hack.workspace = true
|
|
anyhow.workspace = true
|