ffplayout/lib/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

2022-06-21 17:10:38 -04:00
[package]
name = "ffplayout-lib"
description = "Library for ffplayout"
readme = "README.md"
version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
2022-06-21 17:10:38 -04:00
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "std"] }
2022-06-21 17:10:38 -04:00
crossbeam-channel = "0.5"
ffprobe = "0.3"
2023-08-08 15:10:30 -04:00
file-rotate = "0.7"
2023-11-08 02:40:48 -05:00
lettre = { version = "0.11", features = ["builder", "rustls-tls", "smtp-transport"], default-features = false }
lexical-sort = "0.3"
2022-06-21 17:10:38 -04:00
log = "0.4"
rand = "0.8"
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
2022-06-21 17:10:38 -04:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-02-09 05:58:59 -05:00
serde_yaml = "0.9"
2022-06-21 17:10:38 -04:00
shlex = "1.1"
2023-08-08 15:10:30 -04:00
simplelog = { version = "0.12", features = ["paris"] }
2022-06-21 17:10:38 -04:00
time = { version = "0.3", features = ["formatting", "macros"] }
walkdir = "2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = ["shlobj", "std", "winerror"]
[target.'cfg(not(target_arch = "windows"))'.dependencies]
signal-child = "1"