video-processing-support/Cargo.toml
Benjamin Slingo a38143c28b Initial commit: Shared video processing crate
- Event-driven file stability tracking
- FFmpeg video conversion with hardware acceleration
- NFO file generation for Kodi compatibility
- Environment-based configuration
- Disk space monitoring and shutdown handling
- Comprehensive logging with tracing
2025-09-06 18:26:58 -04:00

18 lines
379 B
TOML

[package]
name = "video_processing"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.0", features = ["full", "fs", "process", "signal"] }
anyhow = "1.0"
chrono = "0.4"
notify = "6.1"
regex = "1.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sysinfo = "0.30"
async-trait = "0.1"
[dev-dependencies]
tempfile = "3.0"