-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (39 loc) · 1.11 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
[package]
name = "my-auth"
version = "0.1.0"
edition = "2021"
[dependencies]
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
axum = { version = "0.7.4", features = ["macros"] }
dotenvy = "0.15.7"
lazy_static = "1.4.0"
oauth2 = { version = "4.4.2", features = ["reqwest"] }
password-auth = "1.0.0"
regex = "1.10.3"
serde = "1.0.196"
sqlx = { version = "0.7.4", features = [
"postgres",
"macros",
"runtime-tokio",
"runtime-tokio-rustls",
"chrono",
] }
tokio = { version = "1.35.1", features = ["full"] }
tower-sessions = "0.12.1"
tower-sessions-redis-store = "0.12.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
validator = { version = "0.16.1", features = ["derive"] }
reqwest = { version = "0.11.22", features = ["json"] }
tower-http = { version = "0.5.1", features = ["fs"] }
tower = "0.4.13"
async-trait = "0.1.77"
rust-i18n = "3.0.1"
serde_json = { version = "1.0.114", features = ["raw_value"] }
serde_trim = "1.1.0"
axum-messages = "0.6.0"
base64 = "0.22.0"
rand = "0.8.5"
rand_core = "0.6.4"
anyhow = "1.0.81"
chrono = { version = "0.4.37", features = ["serde"] }