From 6f462ece40055c8c4cd59d70fa2ba437c67de665 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Dec 2022 11:48:28 +0000 Subject: [PATCH] Update serde_yaml requirement from ^0.8 to ^0.9 Updates the requirements on [serde_yaml](https://github.com/dtolnay/serde-yaml) to permit the latest version. - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.0...0.9.16) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust-code-analysis-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-code-analysis-cli/Cargo.toml b/rust-code-analysis-cli/Cargo.toml index 754529ce0..c86ba2d8a 100644 --- a/rust-code-analysis-cli/Cargo.toml +++ b/rust-code-analysis-cli/Cargo.toml @@ -19,5 +19,5 @@ rust-code-analysis = { path = "..", version = "=0.0.24" } serde = "^1.0" serde_cbor = "^0.11" serde_json = "^1.0" -serde_yaml = "^0.8" +serde_yaml = "^0.9" toml = "^0.5"