From eaaa5557f826d07633df2792ab22a48cd1c0eb48 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Wed, 5 Apr 2023 22:46:56 +0000 Subject: [PATCH] Update Rust crate serde_yaml to 0.9.20 --- Cargo.lock | 4 ++-- crates/octopush_core/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef2f498..67b225b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1469,9 +1469,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.19" +version = "0.9.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f82e6c8c047aa50a7328632d067bcae6ef38772a79e28daf32f735e0e4f3dd10" +checksum = "0feade41f4649f0549d22df8c0432b2c25128b50f5d926b22173022e25b7c69e" dependencies = [ "indexmap", "itoa", diff --git a/crates/octopush_core/Cargo.toml b/crates/octopush_core/Cargo.toml index f31cca5..c542fe4 100644 --- a/crates/octopush_core/Cargo.toml +++ b/crates/octopush_core/Cargo.toml @@ -20,5 +20,5 @@ git2 = { version = "0.17.0", features = [ "vendored-openssl", ] } serde = { version = "1.0.159", features = ["derive"] } -serde_yaml = "0.9.19" +serde_yaml = "0.9.20" octocrab = { version = "0.19.0", features = ["futures-core", "futures-util"] }