mirror of
https://github.com/serde-rs/json.git
synced 2025-12-30 13:20:37 +00:00
Fixes the following error when testing against a compiler older
than 1.64:
error: failed to select a version for the requirement `hashbrown = "^0.14"`
candidate versions found which didn't match: 0.13.2, 0.13.1, 0.12.3, ...
location searched: crates.io index
required by package `indexmap v2.0.0`
... which satisfies dependency `indexmap = "^2"` of package `serde_json v1.0.97`
... which satisfies path dependency `serde_json` of package `serde_json_test v0.0.0`
20 lines
328 B
TOML
20 lines
328 B
TOML
[package]
|
|
name = "serde_json-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
serde_json = { path = ".." }
|
|
|
|
[[bin]]
|
|
name = "from_slice"
|
|
path = "fuzz_targets/from_slice.rs"
|
|
test = false
|
|
doc = false
|