-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (52 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
[package]
name = "api-groupify"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.80"
argon2 = { version = "0.5.3", features = ["std"] }
axum = "0.7.4"
axum-prometheus = "0.6.1"
base64 = "0.21.7"
chrono = { version = "0.4.37", features = ["serde"] }
dotenv = "0.15.0"
metrics = "0.21.1"
metrics-exporter-prometheus = "0.13.1"
once_cell = "1.19.0"
rand = "0.8.5"
reqwest = { version = "0.12.4", default-features = false, features = [
"json",
"rustls-tls",
] }
secrecy = "0.8.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
sha3 = "0.10.8"
sqlx = { version = "0.8.2", features = [
"runtime-tokio-rustls",
"postgres",
"macros",
"sqlite",
"chrono",
] }
tokio = { version = "1.36.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["trace", "cors"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
uuid = { version = "1.8.0", features = ["v4"] }
hex = "0.4.3"
jsonwebtoken = "9.3.0"
hyper = "1.2.0"
serde_urlencoded = "0.7.1"
thiserror = "1.0.57"
tower-sessions = "0.12.2"
time = "0.3.36"
axum_typed_multipart = "0.11.1"
tower-cookies = "0.10.0"
cookie = "0.18.1"
futures = "0.3.30"
async-std = "1.12.0"
bytes = "1.6.0"
oauth2 = "4.4.2"