ffplayout/tests/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-12 15:28:49 +02:00
[package]
name = "tests"
version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
2022-10-12 15:28:49 +02:00
publish = false
[dev-dependencies]
ffplayout = { path = "../ffplayout-engine" }
# ffplayout-api = { path = "../ffplayout-api" }
ffplayout-lib = { path = "../lib" }
chrono = "0.4"
crossbeam-channel = "0.5"
2024-04-09 16:40:14 +02:00
ffprobe = "0.4"
2022-10-12 15:28:49 +02:00
file-rotate = "0.7.0"
2023-11-08 08:40:48 +01:00
lettre = { version = "0.11", features = ["builder", "rustls-tls", "smtp-transport"], default-features = false }
2022-10-12 15:28:49 +02:00
log = "0.4"
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-10-12 15:28:49 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serial_test = "3.0"
2022-10-12 15:28:49 +02:00
shlex = "1.1"
simplelog = { version = "^0.12", features = ["paris"] }
time = { version = "0.3", features = ["formatting", "macros"] }
2024-05-01 22:00:12 +02:00
toml_edit = {version ="0.22", features = ["serde"]}
2022-10-12 15:28:49 +02:00
walkdir = "2"
[[test]]
name = "lib_utils"
path = "src/lib_utils.rs"
[[test]]
name = "engine_playlist"
path = "src/engine_playlist.rs"
[[test]]
name = "engine_cmd"
path = "src/engine_cmd.rs"
2023-09-10 19:30:42 +02:00
[[test]]
name = "engine_generator"
path = "src/engine_generator.rs"