-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 901 Bytes
/
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
[package]
name = "auth"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6" }
axum-extra = { version = "0.4", features = ["cookie"] }
axum-sessions = "0.4"
handlebars = { version = "4.3", features = ["dir_source"] }
tokio = { version = "1.21", features = ["rt", "macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diesel = { version = "2.0", features = ["postgres", "r2d2"] }
diesel_migrations = "2.0"
oauth2 = { version = "4.2", features = ["reqwest"], default_features = false }
reqwest = { version = "0.11", features = ["json"] }
argon2 = "0.4.1"
zxcvbn = "2"
regex = "1.7.1"
once_cell = "1.16"
strum = "0.24"
strum_macros = "0.24"
dotenv = "0.15"
jsonwebtoken = "8.2.0"
lettre = "0.10.1"
rand = "0.8.4"
urlencoding = "2.1.2"
time = "0.3.17"