[go: up one dir, main page]

ftail 0.3.1

Ftail is simple logging implementation for the `log` crate with support for multiple channels.
Documentation
[package]

name = "ftail"

version = "0.3.1"

edition = "2021"

license = "MIT"

description = "Ftail is simple logging implementation for the `log` crate with support for multiple channels."

repository = "https://github.com/tjardoo/ftail"

documentation = "https://docs.rs/ftail"

keywords = ["log", "logging", "filelog"]



[dependencies]

log = { version = "0.4", features = ["std"] }

chrono = "0.4"

chrono-tz = { version = "0.10", optional = true }



[features]

default = ["channels"]

timezone = ["chrono-tz"]



channels = ["console", "formatted_console", "daily_file", "single_file"]



console = ["standard"]

formatted_console = ["formatted"]

daily_file = ["standard", "file_channels"]

single_file = ["standard", "file_channels"]



file_channels = []

standard = []

formatted = []



[dev-dependencies]

ftail = { path = ".", features = ["timezone"] }



[workspace]

members = [

    "examples/console",

    "examples/formatted_console",

    "examples/single_file",

    "examples/daily_file",

    "examples/stack",

    "examples/custom",

]



[lib]

doctest = false