From 30ce3453e16912690751578ab0297ffd67850126 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Tue, 25 Oct 2022 21:21:04 +0000 Subject: [PATCH] Update Rust crate serde_yaml to 0.9.14 --- Cargo.lock | 8 ++++---- cuddle_cli/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 060de00..cadc022 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -876,9 +876,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.4" +version = "0.9.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79b7c9017c64a49806c6e8df8ef99b92446d09c92457f85f91835b01a8064ae0" +checksum = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da" dependencies = [ "indexmap", "itoa", @@ -1191,9 +1191,9 @@ dependencies = [ [[package]] name = "unsafe-libyaml" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "931179334a56395bcf64ba5e0ff56781381c1a5832178280c7d7f91d1679aeb0" +checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68" [[package]] name = "url" diff --git a/cuddle_cli/Cargo.toml b/cuddle_cli/Cargo.toml index 26ea04c..b1d2c9a 100644 --- a/cuddle_cli/Cargo.toml +++ b/cuddle_cli/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] anyhow = "1.0.60" serde = { version = "1.0.143", features = ["derive"] } -serde_yaml = "0.9.4" +serde_yaml = "0.9.14" walkdir = "2.3.2" git2 = { version = "0.15.0", features = ["ssh"] } clap = "3.2.16"