From ae02e9f541155aacf12860c3aecb0d68ffc331e9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 1 Aug 2022 03:54:40 +0000 Subject: [PATCH] Update Rust crate serde_yaml to 0.9 --- Cargo.lock | 27 +++++++++++++++++++++++---- rust/operator-binary/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0066ac7a..083e729a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1041,7 +1041,7 @@ dependencies = [ "secrecy", "serde", "serde_json", - "serde_yaml", + "serde_yaml 0.8.26", "thiserror", "tokio", "tokio-native-tls", @@ -1551,7 +1551,7 @@ dependencies = [ "semver", "serde", "serde_json", - "serde_yaml", + "serde_yaml 0.8.26", "thiserror", "xml-rs", ] @@ -1839,6 +1839,19 @@ dependencies = [ "yaml-rust", ] +[[package]] +name = "serde_yaml" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "826f989c0f374733af6c286f4822f293bc738def07e2782dc1cbb899960a504a" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + [[package]] name = "sha-1" version = "0.9.8" @@ -1971,7 +1984,7 @@ dependencies = [ "semver", "serde", "serde_json", - "serde_yaml", + "serde_yaml 0.9.2", "snafu", "stackable-opa-crd", "stackable-operator", @@ -2004,7 +2017,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "serde_yaml", + "serde_yaml 0.8.26", "stackable-operator-derive", "strum", "thiserror", @@ -2531,6 +2544,12 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" +[[package]] +name = "unsafe-libyaml" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dc1c637311091be28e5d462c07db78081e5828da80ba22605c81c4ad6f7f813" + [[package]] name = "url" version = "2.2.2" diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index bb8732aa..bd7cb947 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -18,7 +18,7 @@ futures = { version = "0.3", features = ["compat"] } semver = "1.0" serde = "1.0" serde_json = "1.0" -serde_yaml = "0.8" +serde_yaml = "0.9" snafu = "0.7" strum = { version = "0.24", features = ["derive"] } tokio = { version = "1.20", features = ["full"] }