From ec2da28077790f5b8ebe8aa906fd0d4057d2a356 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Thu, 17 Oct 2024 12:46:11 +0100 Subject: [PATCH] Use serde_with >= 3.0, <= 3.11 All matching minor versions tested working. --- rand_distr/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand_distr/Cargo.toml b/rand_distr/Cargo.toml index d2c8c6e1ca..465e70a232 100644 --- a/rand_distr/Cargo.toml +++ b/rand_distr/Cargo.toml @@ -35,7 +35,7 @@ serde = ["dep:serde", "dep:serde_with", "rand/serde"] rand = { path = "..", version = "=0.9.0-alpha.1", 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.0", optional = true } +serde_with = { version = ">= 3.0, <= 3.11", optional = true } [dev-dependencies] rand_pcg = { version = "=0.9.0-alpha.1", path = "../rand_pcg" }