forked from kube-rs/kube
-
Notifications
You must be signed in to change notification settings - Fork 0
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
39 additions
and
37 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
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.57.0" | ||
version = "0.58.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.57.0" | ||
version = "0.58.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.57.0" | ||
version = "0.58.0" | ||
description = "Kubernetes futures controller runtime" | ||
authors = [ | ||
"Teo Klestrup Röijezon <[email protected]>", | ||
|
@@ -14,7 +14,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
futures = "0.3.8" | ||
kube = { path = "../kube", version = "^0.57.0", default-features = false, features = ["jsonpatch", "client"] } | ||
kube = { path = "../kube", version = "^0.58.0", default-features = false, features = ["jsonpatch", "client"] } | ||
derivative = "2.1.1" | ||
serde = "1.0.118" | ||
smallvec = "1.6.0" | ||
|
@@ -32,8 +32,8 @@ version = "0.12.0" | |
default-features = false | ||
|
||
[dev-dependencies] | ||
kube-derive = { path = "../kube-derive", version = "^0.57.0"} | ||
kube-core = { path = "../kube-core", version = "^0.57.0"} | ||
kube-derive = { path = "../kube-derive", version = "^0.58.0"} | ||
kube-core = { path = "../kube-core", version = "^0.58.0"} | ||
serde_json = "1.0.61" | ||
tokio = { version = "1.0.1", features = ["full", "test-util"] } | ||
rand = "0.8.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.57.0" | ||
version = "0.58.0" | ||
description = "Kubernetes client and futures controller runtime" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -56,8 +56,8 @@ rustls-pemfile = { version = "0.2.1", optional = true } | |
webpki = { version = "0.21.4", optional = true } | ||
bytes = { version = "1.0.0", optional = true } | ||
tokio = { version = "1.0.1", features = ["time", "signal", "sync"], optional = true } | ||
kube-derive = { path = "../kube-derive", version = "^0.57.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "^0.57.0"} | ||
kube-derive = { path = "../kube-derive", version = "^0.58.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "^0.58.0"} | ||
jsonpath_lib = { version = "0.3.0", optional = true } | ||
tokio-util = { version = "0.6.0", optional = true, features = ["io", "codec"] } | ||
hyper = { version = "0.14.8", 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
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