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)
This commit is contained in:
Simon Warta 2022-12-03 01:06:58 +01:00 committed by Graham Esau
parent 824993ca76
commit 9dc816fafc

View file

@ -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 }