ffplayout/Cargo.toml
2022-02-23 18:06:40 +01:00

30 lines
572 B
TOML

# cargo-features = ["strip"]
[package]
name = "ffplayout-engine-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1.0"
regex = "1"
chrono = "0.4"
clap = { version = "3.0.14", features = ["derive"] }
notify = "4.0.0"
walkdir = "2"
rand = "0.8.5"
ffprobe = "0.3"
log = "0.4.14"
simplelog = { version = "^0.11.2", features = ["paris"] }
# tokio = { version = "1.16.1", features = ["full"] }
[[bin]]
name = "ffplayout"
path = "src/main.rs"
[profile.release]
# strip = true
lto = true