nefarious-login/Cargo.toml
kjuulh 835cd32fb1
Some checks are pending
ci/woodpecker/pr/test Pipeline is pending
feat: update deps
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-11-10 20:15:11 +01:00

45 lines
1.2 KiB
TOML

[workspace]
members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.dependencies]
nefarious-login = { path = "crates/nefarious-login" }
anyhow = { version = "1" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive", "env"] }
async-trait = { version = "0.1", features = [] }
axum = { git = "https://github.com/tokio-rs/axum", branch = "main", features = [
"macros",
] }
axum-extra = { git = "https://github.com/tokio-rs/axum", branch = "main", features = [
"cookie",
"cookie-private",
"typed-header",
] }
axum-sessions = { version = "0.6.1", features = [] }
async-sqlx-session = { version = "0.4.0", features = ["pg"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
uuid = { version = "1.5", features = [] }
sqlx = { version = "0.7", features = [
"runtime-tokio",
"postgres",
"migrate",
] }
zitadel = { version = "3.4", features = ["axum"] }
tower = "0.4"
tower-http = { version = "0.4", features = ["cors", "trace"] }
oauth2 = "4.4.2"
openidconnect = "3.4"
pretty_assertions = "1.4.0"
sealed_test = "1.0.0"