-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 646 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (22 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "example-oauth2"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
askama = { version = "0.14.0" }
axum = "0.8.1"
axum-login = { path = "../../axum-login" }
dotenvy = "0.15.7"
http = "1.0.0"
hyper = "1.0.1"
oauth2 = "5.0.0"
reqwest = { version = "0.12.12", features = ["json"] }
serde = "1"
sqlx = { version = "0.9.0", features = ["sqlite", "time", "runtime-tokio"] }
thiserror = "2.0.0"
time = "0.3.30"
tokio = { version = "1.34.0", features = ["full"] }
tower = "0.5.2"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tower-sessions = { version = "0.15.0", features = ["memory-store"] }