rust/crates/syntax/fuzz/Cargo.toml

28 lines
510 B
TOML
Raw Normal View History

[package]
2020-08-12 11:26:51 -05:00
name = "syntax-fuzz"
version = "0.0.1"
authors = ["rust-analyzer developers"]
publish = false
2019-03-21 12:05:12 -05:00
edition = "2018"
[package.metadata]
cargo-fuzz = true
2019-03-21 12:05:12 -05:00
[dependencies]
2020-08-12 11:26:51 -05:00
syntax = { path = ".." }
2020-08-12 10:03:06 -05:00
text_edit = { path = "../../text_edit" }
2019-03-21 12:05:12 -05:00
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "parser"
path = "fuzz_targets/parser.rs"
2019-03-21 12:06:48 -05:00
[[bin]]
name = "reparse"
path = "fuzz_targets/reparse.rs"