From 11c52a7f666c481fb00715173548a4c40f4afad4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Jul 2022 10:45:10 +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.0) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- daemon/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 7e1dfde..89e0ad1 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -31,7 +31,7 @@ once_cell = "1" thiserror = "1" libc = "0.2.94" serde = { version = "1.0", features = ["derive"] } -serde_yaml = "0.8" +serde_yaml = "0.9" toml = "0.5.7" nix = "0.22" uuid = { version = "0.8", features = ["v4"] }