log-watcher 0.2.1

Real-time log file monitoring with pattern highlighting and desktop notifications
Documentation
[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"

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

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive", "env"]
version = "4"

[dependencies.clap_complete]
version = "4"

[dependencies.crossterm]
version = "0.29"

[dependencies.notify]
version = "8"

[dependencies.notify-rust]
version = "4"

[dependencies.regex]
version = "1"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.termcolor]
version = "1"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"

[lib]
name = "log_watcher"
path = "src/lib.rs"

[package]
authors = ["Mathis Charretier <mathis.charretier@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "Real-time log file monitoring with pattern highlighting and desktop notifications"
documentation = "https://docs.rs/log-watcher"
edition = "2021"
homepage = "https://github.com/matcharr/logwatcher"
keywords = ["logs", "monitoring", "cli", "tail", "notifications"]
license = "MIT"
name = "log-watcher"
readme = "README.md"
repository = "https://github.com/matcharr/logwatcher"
version = "0.2.1"

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

[target."cfg(windows)".dependencies.winrt-notification]
version = "0.5"

[[test]]
name = "integration"
path = "tests/integration.rs"