diff options
author | Alex Auvolat <alex@adnab.me> | 2022-03-16 12:09:50 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2022-03-24 16:57:43 +0100 |
commit | 9d0ed788879ad50450ebd44cd2a0b4fc942d45b6 (patch) | |
tree | 34225ffffac6b0bd3d2788d9827c08e4ae5e1afd /src/rpc/Cargo.toml | |
parent | 509d256c58ccb1aa0041569556465908453976b3 (diff) | |
download | garage-9d0ed788879ad50450ebd44cd2a0b4fc942d45b6.tar.gz garage-9d0ed788879ad50450ebd44cd2a0b4fc942d45b6.zip |
Add feature flag for Kubernetes discovery
Diffstat (limited to 'src/rpc/Cargo.toml')
-rw-r--r-- | src/rpc/Cargo.toml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml index ef7793c9..29591053 100644 --- a/src/rpc/Cargo.toml +++ b/src/rpc/Cargo.toml @@ -32,13 +32,13 @@ serde_bytes = "0.11" serde_json = "1.0" # newer version requires rust edition 2021 -kube = { version = "0.62", features = ["runtime", "derive"] } -k8s-openapi = { version = "0.13", features = ["v1_22"] } -openssl = { version = "0.10", features = ["vendored"] } -schemars = "0.8" +kube = { version = "0.62", features = ["runtime", "derive"], optional = true } +k8s-openapi = { version = "0.13", features = ["v1_22"], optional = true } +openssl = { version = "0.10", features = ["vendored"], optional = true } +schemars = { version = "0.8", optional = true } # newer version requires rust edition 2021 -pnet = "0.28" +pnet_datalink = "0.28" futures = "0.3" futures-util = "0.3" @@ -52,3 +52,5 @@ netapp = { version = "0.4.1", features = ["telemetry"] } hyper = { version = "0.14", features = ["client", "http1", "runtime", "tcp"] } +[features] +kubernetes-discovery = [ "kube", "k8s-openapi", "openssl", "schemars" ] |