-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 812 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
[package]
name = "axum_user_auth"
version = "0.1.0"
authors = ["summersnake"]
edition = "2021"
[dependencies]
askama = "0.11"
axum-macros = "0.3.4"
axum-extra = "0.5.0"
bcrypt = "0.10"
jsonwebtoken = "8.3.0"
thiserror = "1.0.36"
sqlx = { version = "0.6.1", features = [
"runtime-tokio-rustls",
"mysql",
"decimal",
"chrono",
] }
tokio = { version = "1.20.1", features = ["full"] }
axum = { version = "0.6.18", features = ["headers"]}
serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.85"
chrono = { version = "0.4.22", features = ["serde"] }
uuid = { version = "1.2.2", features = ["serde", "v4"] }
dotenv = "0.15.0"
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
rust_decimal = "1.26.1"
once_cell = "1.15.0"
[dependencies.redis]
git = "https://github.com/redis-rs/redis-rs.git"