diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 8f7700039..9cc5ea268 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -44,7 +44,7 @@ tracing = "0.1.36" tracing-subscriber = "0.3.3" warp = { version = "0.3", default-features = false, features = ["tls"] } http = "0.2.5" -json-patch = "0.2.6" +json-patch = "0.3.0" tower = { version = "0.4.6", features = ["limit"] } tower-http = { version = "0.3.2", features = ["trace", "decompression-gzip"] } hyper = { version = "0.14.13", features = ["client", "http1", "stream", "tcp"] } diff --git a/kube-core/Cargo.toml b/kube-core/Cargo.toml index 3cb7dc845..4da5248f5 100644 --- a/kube-core/Cargo.toml +++ b/kube-core/Cargo.toml @@ -28,7 +28,7 @@ serde_json = "1.0.68" thiserror = "1.0.29" form_urlencoded = "1.0.1" http = "0.2.5" -json-patch = { version = "0.2.6", optional = true } +json-patch = { version = "0.3.0", optional = true } once_cell = "1.8.0" chrono = { version = "0.4.19", default-features = false, features = ["clock"] } schemars = { version = "0.8.6", optional = true } diff --git a/kube-runtime/Cargo.toml b/kube-runtime/Cargo.toml index 8c31e436c..af94b85b0 100644 --- a/kube-runtime/Cargo.toml +++ b/kube-runtime/Cargo.toml @@ -31,7 +31,7 @@ pin-project = "1.0.2" tokio = { version = "1.14.0", features = ["time"] } tokio-util = { version = "0.7.0", features = ["time"] } tracing = "0.1.36" -json-patch = "0.2.6" +json-patch = "0.3.0" serde_json = "1.0.68" thiserror = "1.0.29" backoff = "0.4.0"