ffplayout/Cargo.toml

32 lines
654 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]
chrono = "0.4"
clap = { version = "3.0.14", features = ["derive"] }
2022-02-15 11:27:06 -05:00
ffprobe = "0.3"
2022-02-23 15:25:14 -05:00
file-rotate = "0.6.0"
2022-02-23 12:06:40 -05:00
log = "0.4.14"
2022-02-28 12:01:17 -05:00
#notify = { version = "5.0.0-pre.13", features = ["serde"] }
notify = "4.0.17"
2022-02-23 15:25:14 -05:00
rand = "0.8.5"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
2022-02-23 12:06:40 -05:00
simplelog = { version = "^0.11.2", features = ["paris"] }
2022-02-27 16:15:49 -05:00
tokio = { version = "1.16.1", features = ["full"] }
2022-02-23 15:25:14 -05:00
walkdir = "2"
2022-02-12 16:32:51 -05:00
[[bin]]
name = "ffplayout"
path = "src/main.rs"
[profile.release]
# strip = true
lto = true