-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (39 loc) · 1.65 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "rustcloak-operator"
version = "0.1.9"
edition = "2021"
[dependencies]
keycloak = { version = "26.0.200", features = ["schemars"] }
kube = { version = "0.96.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.23.0", features = ["latest", "schemars"] }
serde_json = { version = "1.0.132", features = ["preserve_order"] }
tokio = { version = "1.41.1", default-features = false, features = ["rt-multi-thread"] }
clap = { version = "4.5.20", features = ["derive", "env", "help", "std"], default-features = false }
schemars = { version = "0.8.21", features = ["chrono", "either"] }
serde = "1.0.214"
thiserror = "2.0.1"
log = { version = "0.4.22", features = ["kv"] }
futures = { version = "0.3.31", default-features = false }
async-trait = "0.1.83"
reqwest = { version = "0.12.9", features = ["h2", "http2", "rustls-tls"], default-features = false }
serde_yaml = "0.9.34"
pretty_env_logger = "0.5.0"
chrono = { version = "0.4.38", features = ["serde"], default-features = false }
oauth2 = "5.0.0-rc.1"
derive_builder = "0.20.2"
async-stream = "0.3.6"
actix-web = { version = "4.9.0", default-features = false, features = ["http2", "macros"] }
either = { version = "1.13.0", features = ["serde"] }
up_impl = { git = "https://github.com/Gottox/up_impl.git" }
#up_impl = { path = "../up_impl" }
keycloak-crd = { git = "https://github.com/withlazers/keycloak-crd.git", branch = "rustcloak" }
#keycloak-crd = { path = "../keycloak-crd" }
randstr = "0.2.1"
structured-logger = "1.0.3"
crd2md = { git = "https://github.com/withlazers/crd2md.git" }
#crd2md = { path = "../crd2md/crd2md" }
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"