-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (31 loc) · 1.03 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
[package]
name = "cerberust"
version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.79"
tokio = { version = "1.36", features = ["full"] }
axum = { version = "0.7.4", features = ["default"] }
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.5", features = ["trace", "cors"] }
tracing = "0.1.40"
tracing-subscriber = "0.3"
thiserror = "1.0.56"
validator = { version = "0.16", features = ["derive"] }
hyper = "1.1.0"
dotenvy = "0.15"
argon2 = "0.5"
time = "0.3"
lettre = "0.11.4"
axum-macros = "0.4.1"
uuid = { version = "1.7.0", features = ["serde", "v4"] }
chrono = { version = "0.4.35", features = ["serde"] }
tower-cookies = "0.10"
jsonwebtoken = { version = "9.3.0", features = ["use_pem"] }
diesel = { version = "2.1.4", features = ["uuid", "chrono", "serde_json"] }
diesel-async = { version = "0.4.1", features = ["postgres", "bb8"] }
async-recursion = "1.1.0"
toml = "0.8.12"