From c967df615746f654dca222326684e850fc2fb197 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 05:52:19 +0000 Subject: [PATCH] Bump serde_yaml from 0.8.26 to 0.9.34+deprecated Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.26 to 0.9.34+deprecated. - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.26...0.9.34) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 +++++++++++------------- compiler/compiler/Cargo.toml | 2 +- compiler/parser/Cargo.toml | 2 +- tests/test-framework/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 37f56b8b9f..b8866ad4e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3381,14 +3381,15 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.26" +version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 1.9.3", + "indexmap 2.2.6", + "itoa", "ryu", "serde", - "yaml-rust", + "unsafe-libyaml", ] [[package]] @@ -5347,6 +5348,12 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + [[package]] name = "untrusted" version = "0.9.0" @@ -5731,15 +5738,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "yaml-rust" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" -dependencies = [ - "linked-hash-map", -] - [[package]] name = "zerocopy" version = "0.7.34" diff --git a/compiler/compiler/Cargo.toml b/compiler/compiler/Cargo.toml index 8d6d9df266..b286cd5d67 100644 --- a/compiler/compiler/Cargo.toml +++ b/compiler/compiler/Cargo.toml @@ -79,7 +79,7 @@ version = "1.0.201" features = [ "derive" ] [dev-dependencies.serde_yaml] -version = "0.8.25" +version = "0.9.34" [dev-dependencies.tempfile] version = "3.10" diff --git a/compiler/parser/Cargo.toml b/compiler/parser/Cargo.toml index b539229d0d..483834600a 100644 --- a/compiler/parser/Cargo.toml +++ b/compiler/parser/Cargo.toml @@ -61,7 +61,7 @@ version = "1.0" features = [ "preserve_order" ] [dev-dependencies.serde_yaml] -version = "0.8" +version = "0.9" [features] default = [ ] diff --git a/tests/test-framework/Cargo.toml b/tests/test-framework/Cargo.toml index 87775b3fcb..6410af7b9f 100644 --- a/tests/test-framework/Cargo.toml +++ b/tests/test-framework/Cargo.toml @@ -45,7 +45,7 @@ version = "1.0" features = [ "preserve_order" ] [dependencies.serde_yaml] -version = "0.8" +version = "0.9" [dependencies.walkdir] version = "2.5"