ffplayout/Cargo.toml

38 lines
776 B
TOML
Raw Normal View History

2022-02-12 22:32:51 +01:00
[package]
2022-03-08 21:22:31 +01:00
name = "ffplayout-rs"
version = "0.9.1"
2022-02-12 22:32:51 +01:00
edition = "2021"
[dependencies]
chrono = "0.4"
2022-03-28 15:59:58 +02:00
clap = { version = "3.1", features = ["derive"] }
2022-02-15 17:27:06 +01:00
ffprobe = "0.3"
2022-03-28 15:59:58 +02:00
file-rotate = "0.6"
2022-04-05 17:07:34 +02:00
jsonrpc-http-server = "18.0"
2022-04-02 22:15:30 +02:00
lettre = "0.10.0-rc.5"
2022-03-28 15:59:58 +02:00
log = "0.4"
notify = "4.0"
2022-03-13 22:18:53 +01:00
once_cell = "1.10"
process_control = "3.3"
2022-03-28 15:59:58 +02:00
rand = "0.8"
regex = "1"
2022-02-23 21:25:14 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
shlex = "1.1"
2022-03-28 15:59:58 +02:00
simplelog = { version = "^0.11", features = ["paris"] }
tokio = { version = "1.16", features = ["rt-multi-thread"] }
2022-02-23 21:25:14 +01:00
walkdir = "2"
2022-02-12 22:32:51 +01:00
2022-03-15 16:16:35 +01:00
[target.x86_64-unknown-linux-musl.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
2022-02-12 22:32:51 +01:00
[[bin]]
name = "ffplayout"
path = "src/main.rs"
[profile.release]
opt-level = 3
strip = true
2022-02-12 22:32:51 +01:00
lto = true