axum-oidc/examples/basic/Cargo.toml

24 lines
637 B
TOML
Raw 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]
2025-01-12 22:37:30 +01:00
tokio = { version = "1.43", features = ["net", "macros", "rt-multi-thread"] }
axum = { version = "0.8", features = [ "macros" ]}
axum-oidc = { path = "./../.." }
2025-01-12 22:37:30 +01:00
tower = "0.5"
tower-sessions = "0.14"
2024-04-28 10:52:41 +02:00
dotenvy = "0.15"
[dev-dependencies]
2025-01-12 22:37:30 +01:00
testcontainers = "0.23"
tokio = { version = "1.43", features = ["rt-multi-thread"] }
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
env_logger = "0.11"
log = "0.4"
headless_chrome = "1.0"