mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
New `fuzz` profile is added because cargo-bolero now requires it and uses by default, while `--release` option is removed. Instructions for running AFL are removed from the README because it requires some system reconfiguration and I did not test it this time.
30 lines
544 B
TOML
30 lines
544 B
TOML
[package]
|
|
name = "deltachat-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
[dev-dependencies]
|
|
bolero = "0.13.3"
|
|
|
|
[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
|