[package]
edition = "2024"
name = "watch_dir"
version = "1.0.1"
authors = ["Ian McNaughton <IanMcNaugh@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Monitors a directory for file changes and delivers new UTF-8 content over a channel, with configurable read strategies."
readme = "README.md"
keywords = [
"file-watcher",
"filesystem",
"log-monitor",
"notify",
]
categories = [
"filesystem",
"os",
]
license = "MIT"
repository = "https://github.com/imcnaugh/watch_dir"
[lib]
name = "watch_dir"
path = "src/lib.rs"
[[example]]
name = "replace_stragety_example"
path = "examples/replace_stragety_example.rs"
[[test]]
name = "replace_stragety_test"
path = "tests/replace_stragety_test.rs"
[[test]]
name = "tail_lines_stragety_test"
path = "tests/tail_lines_stragety_test.rs"
[[test]]
name = "tail_stragety_test"
path = "tests/tail_stragety_test.rs"
[dependencies.notify]
version = "8.2.0"
[dependencies.notify-debouncer-full]
version = "0.7.0"
[dev-dependencies.tempfile]
version = "3.27.0"