rust/crates/ra_syntax/fuzz/Cargo.toml

28 lines
522 B
TOML
Raw Normal View History

[package]
2018-09-16 11:54:24 +02:00
name = "ra_syntax-fuzz"
version = "0.0.1"
authors = ["rust-analyzer developers"]
publish = false
2019-03-21 18:05:12 +01:00
edition = "2018"
[package.metadata]
cargo-fuzz = true
2019-03-21 18:05:12 +01:00
[dependencies]
ra_syntax = { path = ".." }
2019-03-21 18:06:48 +01:00
ra_text_edit = { path = "../../ra_text_edit" }
2019-03-21 18:05:12 +01: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 18:06:48 +01:00
[[bin]]
name = "reparse"
path = "fuzz_targets/reparse.rs"