Files
lldap-controller/Cargo.toml

46 lines
1.2 KiB
TOML

[package]
name = "lldap-controller"
version = "0.1.0"
edition = "2024"
default-run = "lldap-controller"
[workspace]
members = ["queries"]
[workspace.dependencies]
cynic = "3.12.0"
cynic-codegen = "3.12.0"
insta = { version = "1.45.0", features = ["yaml"] }
[dependencies]
queries = { path = "./queries" }
lldap_auth = { git = "https://github.com/lldap/lldap" }
# Purposefully kept at 0.8.x for compatibility with lldap
rand = { version = "0.8.5" }
serde_json = "1.0.145"
cynic = { workspace = true, features = ["http-reqwest"] }
tokio = { version = "1.48.0", features = ["full"] }
kube = { version = "2.0.1", features = ["derive", "runtime"] }
k8s-openapi = { version = "0.26.1", features = ["v1_34"] }
schemars = { version = "1.1.0", features = ["chrono04"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
futures = "0.3.31"
tracing-subscriber = { version = "0.3.22", features = ["json", "env-filter"] }
tracing = "0.1.44"
thiserror = "2.0.17"
chrono = "0.4.42"
passwords = "3.1.16"
reqwest = { version = "0.12.26", default-features = false, features = [
"json",
"rustls-tls",
] }
git-version = "0.3.9"
color-eyre = "0.6.5"
dotenvy = "0.15.7"
leon = "3.0.2"
async-trait = "0.1.89"
[dev-dependencies]
insta = { workspace = true }