-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.58 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "magnum-cluster-api"
version = "0.36.6"
edition = "2021"
[build-dependencies]
glob = "0.3"
syn = { version = "2.0.100", features = ["full", "parsing"] }
quote = "1.0"
proc-macro2 = "1.0"
heck = "0.5"
vergen-gix = "9"
[dependencies]
backon = "1.5.0"
base64 = "0.22.1"
cluster_feature_derive = { path = "crates/cluster_feature_derive" }
docker-image = "0.2.1"
futures = "0.3.31"
helm = { path = "crates/helm" }
ignition-config = "0.6.0"
include_dir = "0.7.4"
indoc = "2.0.5"
inventory = "0.3.19"
json-patch = "4.0.0"
jsonptr = "0.7"
k8s-openapi = { version = "0.27.0", features = ["schemars", "v1_31"] }
kube = { version = "3.0.0", features = ["runtime", "derive", "http-proxy"] }
log = "0.4.27"
env_logger = { version = "0.11.6", default-features = false, features = ["auto-color", "humantime"] }
maplit = "1.0.2"
pyo3-async-runtimes = { version = "0.28.0", features = ["tokio-runtime"] }
pythonize = "0.28.0"
schemars = "1.0"
semver = "1.0.26"
serde = "1.0.218"
serde_json = "1.0.138"
serde_plain = "1.0.2"
serde_yaml = "0.9.34"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
typed-builder = "0.23.0"
[dependencies.pyo3]
version = "0.28.0"
features = ["abi3-py38", "serde"]
[features]
extension-module = ["pyo3/extension-module"]
default = []
[dev-dependencies]
gtmpl = "0.7.1"
http = "1.3.1"
mockall = "0.14.0"
pretty_assertions = "1.4.1"
regex = "1"
rstest = "0.26.0"
semver = "1.0.26"
serde_gtmpl = { path = "crates/serde_gtmpl" }
tower-test = "0.4.0"
[workspace]
members = ["crates/cluster_feature_derive", "crates/helm", "crates/serde_gtmpl"]