ffplayout/tests/Cargo.toml

56 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2022-10-12 09:28:49 -04:00
[package]
name = "tests"
version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
2022-10-12 09:28:49 -04:00
publish = false
[dev-dependencies]
ffplayout = { path = "../engine" }
2022-10-12 09:28:49 -04:00
2024-08-23 08:46:16 -04:00
actix-web = "4"
actix-web-grants = "4"
actix-web-httpauth = "0.8"
actix-rt = "2.10"
actix-test = "0.1"
2022-10-12 09:28:49 -04:00
chrono = "0.4"
crossbeam-channel = "0.5"
2024-04-09 10:40:14 -04:00
ffprobe = "0.4"
2022-10-12 09:28:49 -04:00
file-rotate = "0.7.0"
2023-11-08 02:40:48 -05:00
lettre = { version = "0.11", features = ["builder", "rustls-tls", "smtp-transport"], default-features = false }
2022-10-12 09:28:49 -04:00
log = "0.4"
rand = "0.8"
regex = "1"
2024-03-23 18:36:35 -04:00
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
2022-10-12 09:28:49 -04:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serial_test = "3.0"
2022-10-12 09:28:49 -04:00
shlex = "1.1"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
2022-10-12 09:28:49 -04:00
time = { version = "0.3", features = ["formatting", "macros"] }
tokio = { version = "1.29", features = ["full"] }
2024-05-01 16:00:12 -04:00
toml_edit = {version ="0.22", features = ["serde"]}
2022-10-12 09:28:49 -04:00
walkdir = "2"
2024-08-23 08:46:16 -04:00
[[test]]
name = "api_routes"
path = "src/api_routes.rs"
2022-10-12 09:28:49 -04:00
[[test]]
name = "utils"
path = "src/utils.rs"
2022-10-12 09:28:49 -04:00
[[test]]
name = "engine_playlist"
path = "src/engine_playlist.rs"
[[test]]
name = "engine_cmd"
path = "src/engine_cmd.rs"
2023-09-10 13:30:42 -04:00
[[test]]
name = "engine_generator"
path = "src/engine_generator.rs"