-
-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
21 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube-client" | ||
version = "0.78.0" | ||
version = "0.79.0" | ||
description = "Kubernetes client" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -53,7 +53,7 @@ rustls = { version = "0.20.3", features = ["dangerous_configuration"], optional | |
rustls-pemfile = { version = "1.0.0", optional = true } | ||
bytes = { version = "1.1.0", optional = true } | ||
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.78.0" } | ||
kube-core = { path = "../kube-core", version = "=0.79.0" } | ||
jsonpath_lib = { version = "0.3.0", optional = true } | ||
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } | ||
hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "kube-core" | ||
description = "Kube shared types, traits and client-less behavior" | ||
version = "0.78.0" | ||
version = "0.79.0" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "kube-derive" | ||
description = "Custom derives for the kube kubernetes crates" | ||
version = "0.78.0" | ||
version = "0.79.0" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube-runtime" | ||
version = "0.78.0" | ||
version = "0.79.0" | ||
description = "Kubernetes futures controller runtime" | ||
authors = [ | ||
"Natalie Klestrup Röijezon <[email protected]>", | ||
|
@@ -25,7 +25,7 @@ rustdoc-args = ["--cfg", "docsrs"] | |
|
||
[dependencies] | ||
futures = "0.3.17" | ||
kube-client = { path = "../kube-client", version = "=0.78.0", default-features = false, features = ["jsonpatch", "client"] } | ||
kube-client = { path = "../kube-client", version = "=0.79.0", default-features = false, features = ["jsonpatch", "client"] } | ||
derivative = "2.1.1" | ||
serde = "1.0.130" | ||
smallvec = "1.7.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube" | ||
version = "0.78.0" | ||
version = "0.79.0" | ||
description = "Kubernetes client and async controller runtime" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -36,10 +36,10 @@ features = ["client", "rustls-tls", "openssl-tls", "derive", "ws", "oauth", "jso | |
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
kube-derive = { path = "../kube-derive", version = "=0.78.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.78.0" } | ||
kube-client = { path = "../kube-client", version = "=0.78.0", default-features = false, optional = true } | ||
kube-runtime = { path = "../kube-runtime", version = "=0.78.0", optional = true} | ||
kube-derive = { path = "../kube-derive", version = "=0.79.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.79.0" } | ||
kube-client = { path = "../kube-client", version = "=0.79.0", default-features = false, optional = true } | ||
kube-runtime = { path = "../kube-runtime", version = "=0.79.0", optional = true} | ||
|
||
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency | ||
# is considered part of the "deps" graph rather than just the "dev-deps" graph | ||
|