axum-oidc/examples/basic/Cargo.toml

16 lines
354 B
TOML
Raw Permalink Normal View History

[package]
name = "basic"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-28 10:52:41 +02:00
tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] }
axum = "0.7"
axum-oidc = { path = "./../.." }
2024-04-28 10:52:41 +02:00
tower = "0.4"
tower-sessions = "0.12"
2024-04-28 10:52:41 +02:00
dotenvy = "0.15"