fixes the serde version (#407)

* fixes the serde version

* explicitly sets the version in the main Cargo.toml
This commit is contained in:
kaczmarczyck
2021-11-15 13:09:40 +01:00
committed by GitHub
parent 32da73772f
commit 40e912f8ac
2 changed files with 5 additions and 1 deletions

View File

@@ -9,8 +9,10 @@ edition = "2018"
cargo-fuzz = true
[dependencies]
libfuzzer-sys = { version = "0.3"}
libfuzzer-sys = { version = "0.3" }
fuzz_helper = { path = "fuzz_helper" }
# This import explicitly locks the version.
serde_json = { version = "=1.0.69" }
# Prevent this from interfering with workspaces
[workspace]