diff --git a/Cargo.lock b/Cargo.lock index f5e48c7b49abd..2a24fb971ab66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3208,9 +3208,9 @@ dependencies = [ [[package]] name = "k8s-openapi" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "748acc444200aa3528dc131a8048e131a9e75a611a52d152e276e99199313d1a" +checksum = "4f8de9873b904e74b3533f77493731ee26742418077503683db44e1b3c54aa5c" dependencies = [ "base64 0.13.0", "bytes 1.1.0", @@ -7299,7 +7299,7 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "static_assertions", ] diff --git a/Cargo.toml b/Cargo.toml index 5b4c42b18bb37..eec798722435e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -237,7 +237,7 @@ infer = { version = "0.5.0", default-features = false, optional = true} indexmap = { version = "~1.6.2", default-features = false, features = ["serde"] } indoc = { version = "1.0.3", default-features = false } inventory = { version = "0.1.10", default-features = false } -k8s-openapi = { version = "0.13.0", default-features = true, features = ["api", "v1_16"], optional = true } +k8s-openapi = { version = "0.13.1", default-features = true, features = ["api", "v1_16"], optional = true } lazy_static = { version = "1.4.0", default-features = false } listenfd = { version = "0.3.5", default-features = false, optional = true } logfmt = { version = "0.0.2", default-features = false, optional = true } diff --git a/lib/k8s-e2e-tests/Cargo.toml b/lib/k8s-e2e-tests/Cargo.toml index 0561005bcc81e..d1b0c32d1b589 100644 --- a/lib/k8s-e2e-tests/Cargo.toml +++ b/lib/k8s-e2e-tests/Cargo.toml @@ -9,7 +9,7 @@ license = "MPL-2.0" [dependencies] futures = "0.3" -k8s-openapi = { version = "0.13.0", default-features = false, features = ["v1_16"] } +k8s-openapi = { version = "0.13.1", default-features = false, features = ["v1_16"] } k8s-test-framework = { version = "0.1", path = "../k8s-test-framework" } regex = "1" reqwest = { version = "0.11.4", features = ["json"] } diff --git a/lib/k8s-test-framework/Cargo.toml b/lib/k8s-test-framework/Cargo.toml index 2c0ff24666a31..340eeb0ff051a 100644 --- a/lib/k8s-test-framework/Cargo.toml +++ b/lib/k8s-test-framework/Cargo.toml @@ -8,7 +8,7 @@ publish = false license = "MPL-2.0" [dependencies] -k8s-openapi = { version = "0.13.0", default-features = false, features = ["v1_16"] } +k8s-openapi = { version = "0.13.1", default-features = false, features = ["v1_16"] } once_cell = "1" serde_json = "1" tempfile = "3"