mirror of
https://github.com/pfzetto/axum-oidc.git
synced 2024-11-21 19:12:49 +01:00
23 lines
610 B
TOML
23 lines
610 B
TOML
[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]
|
|
tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] }
|
|
axum = "0.7"
|
|
axum-oidc = { path = "./../.." }
|
|
tower = "0.4"
|
|
tower-sessions = "0.13"
|
|
|
|
dotenvy = "0.15"
|
|
|
|
[dev-dependencies]
|
|
testcontainers = "0.15.0"
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
|
|
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
|
|
env_logger = "0.11.3"
|
|
log = "0.4.21"
|
|
headless_chrome = "1.0.9"
|