rust/crates/ra_syntax/fuzz/Cargo.toml
Ville Penttinen 710975ecd8 Fix typo in Cargo.toml authors
Fixes typo introduced in #782
2019-02-11 10:20:04 +02:00

22 lines
402 B
TOML

[package]
name = "ra_syntax-fuzz"
version = "0.0.1"
authors = ["rust-analyzer developers"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies.ra_syntax]
path = ".."
[dependencies.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"