Files
axum/examples/oauth/Cargo.toml
T

20 lines
607 B
TOML
Raw Normal View History

[package]
name = "example-oauth"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
anyhow = "1"
2022-06-10 08:59:17 +02:00
async-session = "3.0.0"
2023-04-11 16:09:48 +02:00
axum = { path = "../../axum" }
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
http = "1.0.0"
2025-09-11 22:34:41 +09:00
oauth2 = "5"
2021-12-12 14:19:30 +00:00
# Use Rustls because it makes it easier to cross-compile on CI
2024-03-29 15:34:56 +08:00
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
2022-06-10 08:59:17 +02:00
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }