From c8d6566c624361b253dafdbbb3cb4129994ac4f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:44:52 +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.32) --- updated-dependencies: - dependency-name: serde_yaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pingora-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml index 76d239cb..171affcb 100644 --- a/pingora-core/Cargo.toml +++ b/pingora-core/Cargo.toml @@ -39,7 +39,7 @@ nix = "0.24" structopt = "0.3" once_cell = { workspace = true } serde = { version = "1.0", features = ["derive"] } -serde_yaml = "0.8" +serde_yaml = "0.9" libc = "0.2.70" chrono = { version = "0.4", features = ["alloc"], default-features = false } thread_local = "1.0"