2024-06-27 16:55:09 +00:00
|
|
|
[package]
|
|
|
|
name = "central_backend"
|
2024-10-19 13:32:38 +00:00
|
|
|
version = "1.0.2"
|
2024-06-27 16:55:09 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-31 16:26:24 +00:00
|
|
|
log = "0.4.22"
|
|
|
|
env_logger = "0.11.5"
|
2024-06-27 16:55:09 +00:00
|
|
|
lazy_static = "1.5.0"
|
2024-10-18 17:57:06 +00:00
|
|
|
dotenvy = "0.15.7"
|
2024-10-14 20:14:55 +00:00
|
|
|
clap = { version = "4.5.20", features = ["derive", "env"] }
|
2024-09-21 15:04:30 +00:00
|
|
|
anyhow = "1.0.89"
|
2024-10-14 20:14:55 +00:00
|
|
|
thiserror = "1.0.64"
|
2024-08-31 16:26:24 +00:00
|
|
|
openssl = { version = "0.10.66" }
|
2024-06-28 17:19:17 +00:00
|
|
|
openssl-sys = "0.9.102"
|
2024-10-14 20:14:55 +00:00
|
|
|
libc = "0.2.159"
|
2024-06-28 17:19:17 +00:00
|
|
|
foreign-types-shared = "0.1.1"
|
2024-10-29 00:29:13 +00:00
|
|
|
asn1 = "0.17"
|
2024-06-28 20:00:20 +00:00
|
|
|
actix-web = { version = "4", features = ["openssl"] }
|
2024-10-14 20:14:55 +00:00
|
|
|
futures = "0.3.31"
|
2024-09-21 15:04:30 +00:00
|
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
2024-10-12 15:28:49 +00:00
|
|
|
reqwest = { version = "0.12.7", features = ["json"] }
|
2024-10-19 11:21:10 +00:00
|
|
|
serde_json = "1.0.131"
|
2024-06-29 09:45:39 +00:00
|
|
|
rand = "0.8.5"
|
2024-06-29 12:43:56 +00:00
|
|
|
actix = "0.13.5"
|
2024-09-21 15:04:30 +00:00
|
|
|
actix-identity = "0.8.0"
|
|
|
|
actix-session = { version = "0.10.1", features = ["cookie-session"] }
|
2024-06-29 12:43:56 +00:00
|
|
|
actix-cors = "0.7.0"
|
2024-10-05 13:50:46 +00:00
|
|
|
actix-multipart = { version ="0.7.2", features = ["derive"] }
|
2024-06-29 12:43:56 +00:00
|
|
|
actix-remote-ip = "0.1.0"
|
2024-10-14 20:14:55 +00:00
|
|
|
futures-util = "0.3.31"
|
2024-10-19 11:21:10 +00:00
|
|
|
uuid = { version = "1.11.0", features = ["v4", "serde"] }
|
2024-07-01 20:24:03 +00:00
|
|
|
semver = { version = "1.0.23", features = ["serde"] }
|
2024-09-21 15:04:30 +00:00
|
|
|
lazy-regex = "3.3.0"
|
|
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
2024-08-07 14:44:30 +00:00
|
|
|
tokio_schedule = "0.3.2"
|
|
|
|
mime_guess = "2.0.5"
|
2024-09-04 20:43:23 +00:00
|
|
|
rust-embed = "8.5.0"
|
2024-09-10 17:40:06 +00:00
|
|
|
jsonwebtoken = { version = "9.3.0", features = ["use_pem"] }
|
2024-09-17 20:31:51 +00:00
|
|
|
prettytable-rs = "0.10.0"
|
2024-09-20 16:27:20 +00:00
|
|
|
chrono = "0.4.38"
|
2024-09-23 19:47:25 +00:00
|
|
|
serde_yml = "0.0.12"
|
2024-09-30 20:11:48 +00:00
|
|
|
bincode = "=2.0.0-rc.3"
|
2024-11-05 00:15:20 +00:00
|
|
|
fs4 = { version = "0.11.0", features = ["sync"] }
|