-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 908 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 908 Bytes
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
[workspace]
resolver = "2"
members = ["rustcloak-operator", "rustcloak-crd", "utils"]
[workspace.package]
version = "0.4.0"
authors = [
"Enno Boland <mail@eboland.de>",
]
repository = "https://github.com/DenktMit-eG/rustcloak-operator"
readme = "README.md"
license = "MIT"
edition = "2024"
[workspace.dependencies]
kube = { version = "1.1.0", default-features = false }
k8s-openapi = { version = "0.25.0", features = ["latest", "schemars"] }
clap = { version = "4.5.40", features = ["derive", "help", "std", "string"], default-features = false }
serde = { version = "1.0.219", features = ["derive"] }
keycloak-types = { git = "https://github.com/Gottox/keycloak-client.rs", rev = "5314c46" }
#schemars = { version = "0.9.0", features = ["chrono04", "either1"] }
schemars = { version = "0.8.22", features = ["chrono", "either"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"