rust/crates/syntax/fuzz/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
531 B
TOML
Raw Normal View History

[package]
2020-08-12 18:26:51 +02:00
name = "syntax-fuzz"
version = "0.0.1"
publish = false
2021-10-21 17:49:28 +02:00
edition = "2021"
2021-12-16 01:49:48 +05:00
rust-version = "1.57"
[package.metadata]
cargo-fuzz = true
2019-03-22 02:05:12 +09:00
[dependencies]
2021-02-03 22:01:09 +08:00
syntax = { path = "..", version = "0.0.0" }
text_edit = { path = "../../text_edit", version = "0.0.0" }
2019-03-22 02:05:12 +09: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-22 02:06:48 +09:00
[[bin]]
name = "reparse"
path = "fuzz_targets/reparse.rs"