From 9dc816fafcc797061fdad936bf651fad23e64fbb Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sat, 3 Dec 2022 01:06:58 +0100 Subject: [PATCH] Set a reasonable min version for serde_json serde_json 1.0.25 brings in the json! macro that is used here (https://github.com/serde-rs/json/releases/tag/v1.0.25) --- schemars/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index bf5d6b9..9f3fedd 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -15,7 +15,7 @@ build = "build.rs" [dependencies] schemars_derive = { version = "=0.8.11", optional = true, path = "../schemars_derive" } serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" +serde_json = "1.0.25" dyn-clone = "1.0" chrono = { version = "0.4", default-features = false, optional = true }