From f07d52af16224a8f41fa270a74bfba1b7613fcec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Mar 2025 02:13:09 +0000 Subject: [PATCH] Update serde_with requirement from >= 3.0, <= 3.11 to >= 3.0, <= 3.12 Updates the requirements on [serde_with](https://github.com/jonasbb/serde_with) to permit the latest version. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.0.0...v3.12.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 02c7cea..cd63fed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ serde = ["dep:serde", "dep:serde_with", "rand/serde"] rand = { version = "0.9.0", default-features = false } num-traits = { version = "0.2", default-features = false, features = ["libm"] } serde = { version = "1.0.103", features = ["derive"], optional = true } -serde_with = { version = ">= 3.0, <= 3.11", optional = true } +serde_with = { version = ">= 3.0, <= 3.12", optional = true } [dev-dependencies] rand_pcg = { version = "0.9.0" }