ffplayout/Cargo.toml

36 lines
743 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"
2022-03-13 17:18:53 -04:00
once_cell = "1.10"
2022-02-23 15:25:14 -05:00
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-03-15 11:16:35 -04:00
tokio = { version = "1.16.1", features = ["rt-multi-thread"] }
2022-02-23 15:25:14 -05:00
walkdir = "2"
2022-02-12 16:32:51 -05:00
2022-03-15 11:16:35 -04:00
[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
2022-02-12 16:32:51 -05:00
[[bin]]
name = "ffplayout"
path = "src/main.rs"
[profile.release]
# strip = true
lto = true