Skip to content

Commit

Permalink
cargo upgrade k8s-openapi --workspace
Browse files Browse the repository at this point in the history
Signed-off-by: clux <sszynrae@gmail.com>
  • Loading branch information
clux committed Sep 15, 2022
1 parent 15faafb commit 0dc66e7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Expand Up @@ -29,6 +29,6 @@ tracing = "0.1.29"
tracing-subscriber = "0.3.3"
futures = "0.3.17"
kube = { path = "../kube", version = "^0.74.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] }
k8s-openapi = { version = "0.15.0", default-features = false }
k8s-openapi = { version = "0.16.0", default-features = false }
serde_json = "1.0.68"
tokio = { version = "1.14.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Expand Up @@ -31,7 +31,7 @@ futures = "0.3.17"
jsonpath_lib = "0.3.0"
kube = { path = "../kube", version = "^0.74.0", default-features = false, features = ["admission"] }
kube-derive = { path = "../kube-derive", version = "^0.74.0", default-features = false } # only needed to opt out of schema
k8s-openapi = { version = "0.15.0", default-features = false }
k8s-openapi = { version = "0.16.0", default-features = false }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
serde_yaml = "0.8.21"
Expand Down
4 changes: 2 additions & 2 deletions kube-client/Cargo.toml
Expand Up @@ -73,7 +73,7 @@ tracing = { version = "0.1.29", features = ["log"], optional = true }
hyper-openssl = { version = "0.9.2", optional = true }

[dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = []

Expand All @@ -86,6 +86,6 @@ tokio-test = "0.4.0"
tower-test = "0.4.0"

[dev-dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = ["v1_24"]
4 changes: 2 additions & 2 deletions kube-core/Cargo.toml
Expand Up @@ -34,12 +34,12 @@ chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
schemars = { version = "0.8.6", optional = true }

[dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = []

[dev-dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = ["v1_24"]

Expand Down
2 changes: 1 addition & 1 deletion kube-derive/Cargo.toml
Expand Up @@ -26,7 +26,7 @@ proc-macro = true
serde = { version = "1.0.130", features = ["derive"] }
serde_yaml = "0.8.21"
kube = { path = "../kube", default-features = false, version = "<1.0.0, >=0.61.0", features = ["derive"] }
k8s-openapi = { version = "0.15.0", default-features = false, features = ["v1_24"] }
k8s-openapi = { version = "0.16.0", default-features = false, features = ["v1_24"] }
schemars = { version = "0.8.6", features = ["chrono"] }
validator = { version = "0.16.0", features = ["derive"] }
chrono = { version = "0.4.19", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions kube-runtime/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ thiserror = "1.0.29"
backoff = "0.4.0"

[dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false

[dev-dependencies]
Expand All @@ -48,6 +48,6 @@ rand = "0.8.0"
schemars = "0.8.6"

[dev-dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = ["v1_24"]
4 changes: 2 additions & 2 deletions kube/Cargo.toml
Expand Up @@ -44,7 +44,7 @@ kube-runtime = { path = "../kube-runtime", version = "=0.74.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
[dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false

[dev-dependencies]
Expand All @@ -56,6 +56,6 @@ serde = { version = "1.0.130", features = ["derive"] }
schemars = "0.8.6"

[dev-dependencies.k8s-openapi]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = ["v1_24"]

0 comments on commit 0dc66e7

Please sign in to comment.