logger2 0.1.5

A modern, feature-rich replacement for the classic `logger` CLI: syslog (local/remote, RFC3164 & RFC5424), truecolor hex output, emoji, JSON, and a fully configurable TOML config file.
Documentation
[package]
name = "logger2"
version = "0.1.5"
edition = "2021"
rust-version = "1.75"
authors = ["Hadi Cahyadi <cumulus13@gmail.com>"]
description = "A modern, feature-rich replacement for the classic `logger` CLI: syslog (local/remote, RFC3164 & RFC5424), truecolor hex output, emoji, JSON, and a fully configurable TOML config file."
homepage = "https://github.com/licface/logger2"
repository = "https://github.com/licface/logger2"
documentation = "https://docs.rs/logger2"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["logger", "syslog", "cli", "logging", "color"]
categories = ["command-line-utilities"]
exclude = [".github/*", "tests/*", "*.png"]

[[bin]]
name = "logger2"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive", "wrap_help", "env"] }
clap-version-flag = "1.0.7"
clap-color-help = "0.1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
thiserror = "1.0"
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
dirs = "5.0"
whoami = "1.5"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.10"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true