2022-06-21 17:10:38 -04:00
|
|
|
[package]
|
|
|
|
name = "ffplayout-api"
|
|
|
|
description = "Rest API for ffplayout"
|
|
|
|
readme = "README.md"
|
2023-02-03 03:32:05 -05:00
|
|
|
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-01-28 15:52:32 -05:00
|
|
|
actix-multipart = "0.5"
|
2022-06-21 17:10:38 -04:00
|
|
|
actix-web = "4"
|
|
|
|
actix-web-grants = "3"
|
|
|
|
actix-web-httpauth = "0.6"
|
|
|
|
argon2 = "0.4"
|
2022-08-10 04:07:10 -04:00
|
|
|
chrono = "0.4"
|
2022-06-21 17:10:38 -04:00
|
|
|
clap = { version = "3.2", features = ["derive"] }
|
|
|
|
derive_more = "0.99"
|
|
|
|
faccess = "0.2"
|
2022-06-22 12:00:31 -04:00
|
|
|
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"
|
2022-06-21 17:10:38 -04:00
|
|
|
once_cell = "1.10"
|
|
|
|
rand = "0.8"
|
2022-11-13 11:34:01 -05:00
|
|
|
regex = "1"
|
2022-06-21 17:10:38 -04:00
|
|
|
relative-path = "1.6"
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
2022-06-27 08:10:29 -04:00
|
|
|
rpassword = "6.0"
|
2022-06-22 12:00:31 -04:00
|
|
|
sanitize-filename = "0.3"
|
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
|
|
|
simplelog = { version = "^0.12", features = ["paris"] }
|
2023-02-20 16:12:33 -05:00
|
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "sqlite"] }
|
|
|
|
tokio = { version = "1.25", features = ["full"] }
|
2022-06-23 17:19:45 -04:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "ffpapi"
|
|
|
|
path = "src/main.rs"
|