mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
37 lines
624 B
TOML
37 lines
624 B
TOML
[package]
|
|
name = "deltachat-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[dev-dependencies]
|
|
bolero = "0.8"
|
|
|
|
[dependencies]
|
|
mailparse = "0.13"
|
|
deltachat = { path = ".." }
|
|
format-flowed = { path = "../format-flowed" }
|
|
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[test]]
|
|
name = "fuzz_dateparse"
|
|
path = "fuzz_targets/fuzz_dateparse.rs"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "fuzz_simplify"
|
|
path = "fuzz_targets/fuzz_simplify.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
|