From 35ebdbb2cc56c4f89b78bb35fdf4531863523adf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 16:15:33 +0000 Subject: [PATCH] Bump serde_yaml from 0.8.26 to 0.9.25 Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.26 to 0.9.25. - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.26...0.9.25) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++++++++------------------- compiler/compiler/Cargo.toml | 2 +- compiler/parser/Cargo.toml | 2 +- tests/test-framework/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38bea06435..fd694e63c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1460,12 +1460,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "linked-hash-map" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" - [[package]] name = "linux-raw-sys" version = "0.4.3" @@ -2303,14 +2297,15 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.26" +version = "0.9.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" dependencies = [ - "indexmap 1.9.3", + "indexmap 2.0.0", + "itoa", "ryu", "serde", - "yaml-rust", + "unsafe-libyaml", ] [[package]] @@ -3469,6 +3464,12 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" +[[package]] +name = "unsafe-libyaml" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" + [[package]] name = "untrusted" version = "0.7.1" @@ -3834,15 +3835,6 @@ dependencies = [ "winapi", ] -[[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 = "zip" version = "0.6.6" diff --git a/compiler/compiler/Cargo.toml b/compiler/compiler/Cargo.toml index 716a2c6956..cc9bb029a8 100644 --- a/compiler/compiler/Cargo.toml +++ b/compiler/compiler/Cargo.toml @@ -66,7 +66,7 @@ version = "1.0.183" features = [ "derive" ] [dev-dependencies.serde_yaml] -version = "0.8.25" +version = "0.9.25" [dev-dependencies.tempfile] version = "3.7" diff --git a/compiler/parser/Cargo.toml b/compiler/parser/Cargo.toml index d36d03d49c..11f72ece41 100644 --- a/compiler/parser/Cargo.toml +++ b/compiler/parser/Cargo.toml @@ -62,7 +62,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 e203cebf4e..5a8702d418 100644 --- a/tests/test-framework/Cargo.toml +++ b/tests/test-framework/Cargo.toml @@ -42,7 +42,7 @@ version = "1.0" features = [ "preserve_order" ] [dependencies.serde_yaml] -version = "0.8" +version = "0.9" [dependencies.walkdir] version = "2.3"