mirror of
https://github.com/chatmail/core.git
synced 2026-04-18 05:56:31 +03:00
This makes `fuzz` use the same lockfile as the rest of the crates and makes sure it fuzzes the same versions of dependencies, e.g. `mailparse`.
30 lines
541 B
TOML
30 lines
541 B
TOML
[package]
|
|
name = "deltachat-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
[dev-dependencies]
|
|
bolero = "0.8"
|
|
|
|
[dependencies]
|
|
mailparse = { workspace = true }
|
|
deltachat = { path = ".." }
|
|
format-flowed = { path = "../format-flowed" }
|
|
|
|
[[test]]
|
|
name = "fuzz_dateparse"
|
|
path = "fuzz_targets/fuzz_dateparse.rs"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "fuzz_mailparse"
|
|
path = "fuzz_targets/fuzz_mailparse.rs"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "fuzz_format_flowed"
|
|
path = "fuzz_targets/fuzz_format_flowed.rs"
|
|
harness = false
|