ffplayout/lib/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-21 23:10:38 +02: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 23:10:38 +02:00
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "std"] }
2022-06-21 23:10:38 +02:00
crossbeam-channel = "0.5"
2023-11-20 12:30:49 +01:00
derive_more = "0.99"
2024-04-09 16:40:14 +02:00
ffprobe = "0.4"
2023-08-08 21:10:30 +02:00
file-rotate = "0.7"
2024-05-27 12:14:50 +02:00
home = "0.5"
2024-03-05 09:30:05 +01:00
lazy_static = "1.4"
2023-11-08 08:40:48 +01:00
lettre = { version = "0.11", features = ["builder", "rustls-tls", "smtp-transport"], default-features = false }
lexical-sort = "0.3"
2022-06-21 23:10:38 +02:00
log = "0.4"
num-traits = "0.2"
2022-06-21 23:10:38 +02:00
rand = "0.8"
regex = "1"
2024-03-23 23:36:35 +01:00
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
2022-06-21 23:10:38 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shlex = "1.1"
2023-08-08 21:10:30 +02:00
simplelog = { version = "0.12", features = ["paris"] }
2022-06-21 23:10:38 +02:00
time = { version = "0.3", features = ["formatting", "macros"] }
2024-05-01 22:00:12 +02:00
toml_edit = {version ="0.22", features = ["serde"]}
2022-06-21 23:10:38 +02:00
walkdir = "2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = ["shlobj", "std", "winerror"]
[target.'cfg(not(target_arch = "windows"))'.dependencies]
signal-child = "1"