-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
31 lines (29 loc) · 870 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
[package]
name = "axum-oauth-sample"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.75"
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
axum = { version = "0.7.1" }
axum-extra = { version = "0.9.0", features = ["cookie", "typed-header"] }
chrono = "0.4.31"
cookie = "0.18.0"
dotenvy = "0.15.7"
oauth2 = "4.4.2"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sqlx = { version = "0.7.3", features = [
"sqlite",
"runtime-tokio",
"uuid",
"chrono",
] }
tokio = { version = "1.34.0", features = ["macros"] }
tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.5.0", features = ["trace", "fs"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = { version = "1.6.1", features = ["serde", "v4"] }