ffplayout/ffplayout-api/Cargo.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-21 17:10:38 -04:00
[package]
name = "ffplayout-api"
description = "Rest API 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]
ffplayout-lib = { path = "../lib" }
2022-07-24 13:23:52 -04:00
actix-files = "0.6"
2023-08-08 15:10:30 -04:00
actix-multipart = "0.6"
2022-06-21 17:10:38 -04:00
actix-web = "4"
actix-web-grants = "3"
2023-08-08 15:10:30 -04:00
actix-web-httpauth = "0.8"
argon2 = "0.5"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
clap = { version = "4.3", features = ["derive"] }
2022-06-21 17:10:38 -04:00
derive_more = "0.99"
faccess = "0.2"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
2022-06-21 17:10:38 -04:00
jsonwebtoken = "8"
2022-12-06 02:11:18 -05:00
lexical-sort = "0.3"
2023-08-08 15:10:30 -04:00
once_cell = "1.18"
2022-06-21 17:10:38 -04:00
rand = "0.8"
2022-11-13 11:34:01 -05:00
regex = "1"
2023-08-08 15:10:30 -04:00
relative-path = "1.8"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
2023-08-08 15:10:30 -04:00
rpassword = "7.2"
sanitize-filename = "0.5"
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"
2023-08-08 15:10:30 -04:00
simplelog = { version = "0.12", features = ["paris"] }
2023-07-04 02:00:18 -04:00
sqlx = { version = "0.7", features = ["runtime-tokio", "sqlite"] }
2023-08-08 15:10:30 -04:00
tokio = { version = "1.29", features = ["full"] }
2022-06-23 17:19:45 -04:00
[[bin]]
name = "ffpapi"
path = "src/main.rs"