43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[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
|
|
|
|
[dependencies]
|
|
ffplayout-lib = { path = "../lib" }
|
|
actix-files = "0.6"
|
|
actix-multipart = "0.5"
|
|
actix-web = "4"
|
|
actix-web-grants = "3"
|
|
actix-web-httpauth = "0.6"
|
|
argon2 = "0.4"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
|
|
clap = { version = "4.3", features = ["derive"] }
|
|
derive_more = "0.99"
|
|
faccess = "0.2"
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
jsonwebtoken = "8"
|
|
lexical-sort = "0.3"
|
|
once_cell = "1.10"
|
|
rand = "0.8"
|
|
regex = "1"
|
|
relative-path = "1.6"
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
rpassword = "6.0"
|
|
sanitize-filename = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
simplelog = { version = "^0.12", features = ["paris"] }
|
|
sqlx = { version = "0.7", features = ["runtime-tokio", "sqlite"] }
|
|
tokio = { version = "1.25", features = ["full"] }
|
|
|
|
[[bin]]
|
|
name = "ffpapi"
|
|
path = "src/main.rs"
|