2024-03-08 17:17:00 +01:00
|
|
|
[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" ]}
|
2024-03-08 17:17:00 +01:00
|
|
|
axum-oidc = { path = "./../.." }
|
2025-01-12 22:37:30 +01:00
|
|
|
tower = "0.5"
|
|
|
|
tower-sessions = "0.14"
|
2024-03-25 17:20:44 +01:00
|
|
|
|
2024-04-28 10:52:41 +02:00
|
|
|
dotenvy = "0.15"
|
2024-04-21 01:21:36 +02:00
|
|
|
|
|
|
|
[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"
|