-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
24 lines (22 loc) · 864 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
[package]
name = "rust-user-signup-forgot-password-email"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = "0.5.0"
axum = "0.7.2"
axum-extra = { version = "0.9.0", features = ["cookie"] }
chrono = { version = "0.4.26", features = ["serde"] }
dotenv = "0.15.0"
handlebars = "4.3.7"
jsonwebtoken = "9.2.0"
lettre = { version = "0.11.2", features = ["tokio1", "tokio1-native-tls"] }
rand = "0.8.5"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
sqlx = { version = "0.7.3", features = ["runtime-async-std-native-tls", "sqlite", "chrono", "uuid"] }
time = "0.3.22"
tokio = { version = "1.28.2", features = ["full"] }
tower-http = { version = "0.5.0", features = ["cors"] }
uuid = { version = "1.3.4", features = ["serde", "v4"] }