- Create fuzz/fuzz_targets/profile_yaml.rs to test YAML parsing - Register profile_yaml target in fuzz/Cargo.toml - Verify cargo-fuzz 0.13.1 is installed and working - All 7 fuzz targets now operational per plan requirement (line 3236) Closes bf-1b7od. Verification: notes/bf-1b7od.md
45 lines
825 B
TOML
45 lines
825 B
TOML
[package]
|
|
name = "pdftract-fuzz"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
pdftract-core = { path = "../crates/pdftract-core" }
|
|
libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] }
|
|
|
|
# Prevent this from interfering with the workspace library
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "lexer"
|
|
path = "fuzz_targets/lexer.rs"
|
|
|
|
[[bin]]
|
|
name = "object_parser"
|
|
path = "fuzz_targets/object_parser.rs"
|
|
|
|
[[bin]]
|
|
name = "xref"
|
|
path = "fuzz_targets/xref.rs"
|
|
|
|
[[bin]]
|
|
name = "stream_decoder"
|
|
path = "fuzz_targets/stream_decoder.rs"
|
|
|
|
[[bin]]
|
|
name = "cmap_parser"
|
|
path = "fuzz_targets/cmap_parser.rs"
|
|
|
|
[[bin]]
|
|
name = "content"
|
|
path = "fuzz_targets/content.rs"
|
|
|
|
[[bin]]
|
|
name = "profile_yaml"
|
|
path = "fuzz_targets/profile_yaml.rs"
|