
- 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
18 lines
379 B
TOML
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" |