From dee2451373a6ddf9f03736c622b887e2cbf23bdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Jul 2022 10:14:59 +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] --- sim/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/Cargo.toml b/sim/Cargo.toml index 1f818e1..0ee2fb9 100644 --- a/sim/Cargo.toml +++ b/sim/Cargo.toml @@ -27,7 +27,7 @@ rand_distr = { version = "0.4" } rand_pcg = { version = "0.3", features = ["serde1"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -serde_yaml = "0.8" +serde_yaml = "0.9" sim_derive = { version = "0.12", path = "../sim_derive" } simx = { version = "0.12", path = "../simx", optional = true } thiserror = "1.0"