From 7d53bfa4ee6735e46d3f79eb6c731ec5fd89c006 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Jul 2022 20:28:40 +0000 Subject: [PATCH] Update serde_yaml requirement from 0.8 to 0.9 in /services/autorust 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.0) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- services/autorust/codegen/Cargo.toml | 2 +- services/autorust/openapi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/autorust/codegen/Cargo.toml b/services/autorust/codegen/Cargo.toml index 01b472b584..d119d19016 100644 --- a/services/autorust/codegen/Cargo.toml +++ b/services/autorust/codegen/Cargo.toml @@ -12,7 +12,7 @@ autorust_openapi = { path = "../openapi" } quote = "1.0" proc-macro2 = { version = "1.0", default-features = false } serde_json = "1.0" -serde_yaml = "0.8" +serde_yaml = "0.9" heck = "0.4" regex = "1.5" indexmap = { version = "1.7", features = ["serde-1"] } diff --git a/services/autorust/openapi/Cargo.toml b/services/autorust/openapi/Cargo.toml index 15080dba5a..bb11a8f7d5 100644 --- a/services/autorust/openapi/Cargo.toml +++ b/services/autorust/openapi/Cargo.toml @@ -19,5 +19,5 @@ thiserror = "1.0" [dev-dependencies] assert-json-diff = "2.0" -serde_yaml = "0.8" +serde_yaml = "0.9" camino = "1.0"