ffplayout/Cargo.toml

32 lines
608 B
TOML
Raw Normal View History

2022-02-12 16:32:51 -05:00
# cargo-features = ["strip"]
[package]
2022-03-08 15:22:31 -05:00
name = "ffplayout-rs"
2022-02-12 16:32:51 -05:00
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4"
2022-03-10 09:03:25 -05:00
clap = { version = "3.1.6", 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-03-12 16:18:49 -05:00
lettre = "0.10.0-rc.4"
2022-02-23 12:06:40 -05:00
log = "0.4.14"
2022-02-28 12:01:17 -05:00
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