flexi_logger 0.22.6

An easy-to-configure and flexible logger that writes logs to stderr or stdout and/or to files. It allows custom logline formats, and it allows changing the log specification at runtime. It also allows defining additional log streams, e.g. for alert or security messages.
Documentation
[dependencies.ansi_term]
optional = true
version = "0.12"

[dependencies.atty]
optional = true
version = "0.2"

[dependencies.chrono]
default-features = false
features = ["clock"]
optional = true
version = "0.4.19"

[dependencies.crossbeam-channel]
optional = true
version = "0.5"

[dependencies.crossbeam-queue]
optional = true
version = "0.3"

[dependencies.flate2]
optional = true
version = "1.0"

[dependencies.glob]
version = "0.3"

[dependencies.hostname]
optional = true
version = "0.3"

[dependencies.lazy_static]
version = "1.4"

[dependencies.log]
features = ["std"]
version = "0.4"

[dependencies.notify]
optional = true
version = "4.0"

[dependencies.regex]
optional = true
version = "1.1"

[dependencies.rustversion]
version = "1.0"

[dependencies.serde]
optional = true
version = "1.0"

[dependencies.serde_derive]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.time]
features = ["local-offset", "formatting", "macros", "parsing"]
version = "=0.3.9"

[dependencies.toml]
optional = true
version = "0.5"

[dependencies.tracing-subscriber]
features = ["env-filter"]
optional = true
version = "0.3"
[dev-dependencies.serde_derive]
version = "1.0"

[dev-dependencies.version-sync]
version = "0.9"

[features]
async = ["crossbeam-channel", "crossbeam-queue"]
colors = ["ansi_term", "atty"]
compress = ["flate2"]
default = ["colors", "textfilter"]
dont_minimize_extra_stacks = []
specfile = ["specfile_without_notification", "notify"]
specfile_without_notification = ["serde", "toml", "serde_derive"]
syslog_writer = ["libc", "hostname"]
textfilter = ["regex"]
trc = ["async", "specfile", "tracing-subscriber"]
use_chrono_for_offset = ["chrono"]

[lib]
doctest = false

[package]
authors = ["emabee <meinolf.block@sap.com>"]
categories = ["development-tools::debugging"]
description = "An easy-to-configure and flexible logger that writes logs to stderr or stdout and/or to files. It allows custom logline formats, and it allows changing the log specification at runtime. It also allows defining additional log streams, e.g. for alert or security messages."
documentation = "https://docs.rs/flexi_logger"
edition = "2018"
homepage = "https://crates.io/crates/flexi_logger"
keywords = ["file", "logger"]
license = "MIT OR Apache-2.0"
name = "flexi_logger"
readme = "README.md"
repository = "https://github.com/emabee/flexi_logger"
version = "0.22.6"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(linux)".dependencies.libc]
optional = true
version = "^0.2.50"