-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1.02 KB
/
Cargo.toml
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
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.4"
actix-web-lab = "0.19.1"
argon2 = "0.5.2"
anyhow = "1.0.71"
async-stream = "0.3.3"
async-trait = "0.1.68"
actix-governor = { git = "https://github.com/AaronErhardt/actix-governor", features = ["logger"] }
actix-identity = "0.5.2"
actix-session = { version = "0.7.2", features = ["cookie-session"] }
actix-session-surrealdb = "0.1.3"
actix-web = { version = "4.4.0", features = ["rustls"] }
chrono = "0.4.30"
dotenv = "0.15.0"
env_logger = "0.10.0"
futures = "0.3.25"
log = "0.4.17"
rand_core = { version = "0.6.4", features = ["std"] }
reqwest = { version = "0.11.20", features = ["json"] }
rustls = "0.22"
rustls-pemfile = "1"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
surrealdb = "=1.0.2"
thiserror = "1.0.48"
tokio = { version = "1.28.2", features = ["fs"]}
uuid = { version = "1.3.3", features = ["v4"] }