[package]
edition = "2021"
rust-version = "1.74"
name = "cattail"
version = "0.1.0"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"LICENSE",
"README.md",
"Makefile",
"docs/**",
"packaging/**",
"scripts/**",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tail multiple files and glob patterns with live discovery and labeled output"
homepage = "https://github.com/gracee3/cattail"
documentation = "https://docs.rs/cattail"
readme = "README.md"
keywords = [
"tail",
"log",
"cli",
"filesystem",
"glob",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/gracee3/cattail"
[lib]
name = "cattail"
path = "src/lib.rs"
[[bin]]
name = "cattail"
path = "src/main.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.notify]
version = "8"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"io-util",
"sync",
"time",
"signal",
]
[dev-dependencies.tempfile]
version = "3"