-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 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
[package]
name = "chat_app_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# A bin for prisma.rs
[[bin]]
name = "prisma"
path = "src/prisma.rs"
# ALias
[alias]
prisma = "run --bin prisma"
[dependencies]
tower-http = { version = "0.4.4", features = ["cors"] }
tokio = { version = "1.33.0", features = ["full"] }
serde = { version = "1.0.192", features = ["derive", "rc" ] }
axum = { version = "0.6.20", features = ["json", "headers", "macros", "ws" ] }
validator = { version = "0.16.1", features = ["derive"] }
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10" }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10" }
password-hash = "0.5.0"
axum-extra = { version = "0.8.0", features = ["cookie"] }
axum-client-ip = "0.4.2"
tower = "0.4.13"
serde_json = "1.0.108"
once_cell = "1.18.0"
chrono = "0.4.31"
rustis = "0.12.0"
time = "0.3.30"
dotenv = "0.15.0"
tower_governor = "0.1.0"
http = "0.2.9"
rustrict = "0.7.14"
futures = "0.3.29"
futures-util = "0.3.29"
uuid = "1.5.0"
quick-xml = "0.31.0"
regex = "1.10.2"
rayon = "1.8.0"