From 67b00fd06d5cb8b0487a707b15f9cdef6761c4c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Aug 2022 14:05:01 +0000 Subject: [PATCH] chore(deps): bump serde_yaml from 0.8.26 to 0.9.2 Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.26 to 0.9.2. - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.26...0.9.2) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 ++++++++++------------------ komorebi-core/Cargo.toml | 2 +- komorebic/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 443797ce..53005bce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,12 +549,6 @@ version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" -[[package]] -name = "linked-hash-map" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" - [[package]] name = "lock_api" version = "0.4.7" @@ -1073,14 +1067,15 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.26" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +checksum = "826f989c0f374733af6c286f4822f293bc738def07e2782dc1cbb899960a504a" dependencies = [ "indexmap", + "itoa", "ryu", "serde", - "yaml-rust", + "unsafe-libyaml", ] [[package]] @@ -1353,6 +1348,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" +[[package]] +name = "unsafe-libyaml" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dc1c637311091be28e5d462c07db78081e5828da80ba22605c81c4ad6f7f813" + [[package]] name = "valuable" version = "0.1.0" @@ -1592,12 +1593,3 @@ dependencies = [ "winapi 0.2.8", "winapi-build", ] - -[[package]] -name = "yaml-rust" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" -dependencies = [ - "linked-hash-map", -] diff --git a/komorebi-core/Cargo.toml b/komorebi-core/Cargo.toml index f2a211c7..0075072b 100644 --- a/komorebi-core/Cargo.toml +++ b/komorebi-core/Cargo.toml @@ -10,7 +10,7 @@ clap = { version = "3", features = ["derive"] } color-eyre = "0.6" serde = { version = "1", features = ["derive"] } serde_json = "1" -serde_yaml = "0.8" +serde_yaml = "0.9" strum = { version = "0.24", features = ["derive"] } schemars = "0.8" diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index bc78b164..dc307b77 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -24,7 +24,7 @@ paste = "1" powershell_script = "1.0" serde = { version = "1", features = ["derive"] } serde_json = "1" -serde_yaml = "0.8" +serde_yaml = "0.9" uds_windows = "1" [dependencies.windows]