ffplayout/Cargo.toml

28 lines
499 B
TOML
Raw Normal View History

2022-02-12 16:32:51 -05:00
# 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"
2022-02-15 11:27:06 -05:00
serde_json = "1.0"
regex = "1"
chrono = "0.4"
clap = { version = "3.0.14", features = ["derive"] }
2022-02-14 15:33:17 -05:00
notify = "4.0.0"
walkdir = "2"
rand = "0.8.5"
2022-02-15 11:27:06 -05:00
ffprobe = "0.3"
2022-02-12 16:32:51 -05:00
2022-02-15 11:27:06 -05:00
# tokio = { version = "1.16.1", features = ["full"] }
2022-02-12 16:32:51 -05:00
[[bin]]
name = "ffplayout"
path = "src/main.rs"
[profile.release]
# strip = true
lto = true