forked from 3olkin/axum_jwt_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (36 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
[package]
name = "axum_jwt_example"
version = "0.1.0"
authors = ["Andrei Zolkin <[email protected]>"]
edition = "2021"
license = "MIT"
[dependencies]
async-graphql = { version = "7.0", features = ["chrono", "uuid"] }
async-graphql-axum = "7.0"
axum = { version = "0.7.7", features = [ "macros" ] }
axum-extra = { version = "0.9.4", features = ["typed-header"] }
bcrypt = "0.15"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
dotenv = "0.15"
headers = "0.4"
jsonwebtoken = "9.3"
lazy_static = "1.5"
rayon = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"postgres",
"macros",
"chrono",
"uuid",
] }
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.6", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["serde", "v4"] }
validator = { version = "0.18", features = ["derive"] }