-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (34 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
35 lines (34 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "waitress"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.9.0"
actix-ws = "0.3.0"
anyhow = "1.0.95"
argon2 = "0.5.3"
bollard = "0.18.1"
bytestring = "1.4.0"
chrono = { version = "0.4.39", features = ["serde"] }
dotenvy = "0.15.7"
env_logger = "0.11.6"
flume = { version = "0.11.1", features = ["async"] }
futures = "0.3.31"
futures-util = "0.3.31"
jsonwebtoken = "9.3.1"
lazy_static = "1.5.0"
log = "0.4.25"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
sqlx = { version = "0.8.3", features = [
"postgres",
"runtime-tokio",
"chrono",
"uuid",
] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
uuid = { version = "1.13.2", features = ["v4", "serde"] }