flexi_logger 0.9.0

An easy-to-configure and flexible logger that writes logs to stderr 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
[package]
name = "flexi_logger"
version = "0.9.0"
authors = ["emabee <meinolf.block@sap.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/emabee/flexi_logger"
documentation = "https://docs.rs/flexi_logger"
homepage = "https://crates.io/crates/flexi_logger"
description = """
An easy-to-configure and flexible logger that writes logs to stderr 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.\
"""
keywords = ["file", "logger"]
categories = ["development-tools::debugging"]

[package.metadata.docs.rs]
all-features = true

[features]
default = []
specfile = ["serde","toml","notify", "serde_derive"]

[dependencies]
chrono = "0.4"
glob = "0.2"
regex = "1.0"
log = { version = "0.4", features = ["std"] }
serde = { version = "1.0", optional = true }
toml = { version = "0.4", optional = true }
notify = { version = "4.0", optional = true }
serde_derive = {version = "1.0", optional = true}

[dev-dependencies]
serde_derive = "1.0"