-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
44 lines (42 loc) · 1.19 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "aot-backend"
version = "0.1.0"
edition = "2021"
default-run = "aot-backend"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tungstenite = "0.16"
actix = "0.13.0"
actix-web-actors = "4"
actix-web = {version = "4", features = ["rustls"] }
actix-rt = "2.9.0"
actix-ws = "0.2.5"
futures-util = "0.3.30"
anyhow = "1.0.68"
derive_more = "0.99.17"
chrono = { version = "0.4.23", features = ["serde"] }
diesel = { version = "2.0.2", features = ["chrono", "postgres", "r2d2"] }
reqwest = { version = "0.11", features = ["json"] }
dotenv = "0.15.0"
actix-session = { version = "0.7.2", features = ["redis-actor-session"] }
flexi_logger = "0.24.2"
log = "0.4.17"
rand = "0.8.5"
rayon = "1.6.1"
thiserror = "1.0.38"
array2d = "0.3.0"
petgraph = "0.6.2"
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0"
pwhash = "1"
actix-cors = "0.6.4"
diesel_migrations = "2.0.0"
futures = "0.3.25"
base64 = "0.20.0"
redis = { version = "0.22.1", features = ["r2d2"] }
r2d2 = "0.8.10"
actix-redis = "0.12.0"
awc = "3.0.1"
diesel-derive-enum = { version = "2.0.0-rc.0", features = ["postgres"] }
oauth2 = "4.4.2"
jsonwebtoken = "9.2.0"