fixes the serde version (#407)
* fixes the serde version * explicitly sets the version in the main Cargo.toml
This commit is contained in:
@@ -19,6 +19,8 @@ persistent_store = { path = "libraries/persistent_store" }
|
|||||||
byteorder = { version = "1", default-features = false }
|
byteorder = { version = "1", default-features = false }
|
||||||
arrayref = "0.3.6"
|
arrayref = "0.3.6"
|
||||||
subtle = { version = "2.2", default-features = false, features = ["nightly"] }
|
subtle = { version = "2.2", default-features = false, features = ["nightly"] }
|
||||||
|
# This import explicitly locks the version.
|
||||||
|
serde_json = { version = "=1.0.69", default-features = false, features = ["alloc"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
debug_allocations = ["lang_items/debug_allocations"]
|
debug_allocations = ["lang_items/debug_allocations"]
|
||||||
|
|||||||
@@ -9,8 +9,10 @@ edition = "2018"
|
|||||||
cargo-fuzz = true
|
cargo-fuzz = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libfuzzer-sys = { version = "0.3"}
|
libfuzzer-sys = { version = "0.3" }
|
||||||
fuzz_helper = { path = "fuzz_helper" }
|
fuzz_helper = { path = "fuzz_helper" }
|
||||||
|
# This import explicitly locks the version.
|
||||||
|
serde_json = { version = "=1.0.69" }
|
||||||
|
|
||||||
# Prevent this from interfering with workspaces
|
# Prevent this from interfering with workspaces
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|||||||
Reference in New Issue
Block a user