rust-analyzer/crates/syntax/fuzz/Cargo.toml

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

30 lines
505 B
TOML
Raw Permalink Normal View History

[package]
2020-08-12 16:26:51 +00:00
name = "syntax-fuzz"
version = "0.0.1"
publish = false
edition = "2021"
2024-05-14 08:45:46 +00:00
rust-version = "1.78"
[package.metadata]
cargo-fuzz = true
2019-03-21 17:05:12 +00:00
[dependencies]
2021-02-03 14:01:09 +00:00
syntax = { path = "..", version = "0.0.0" }
text-edit = { path = "../../text-edit", version = "0.0.0" }
libfuzzer-sys = "0.4.5"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "parser"
path = "fuzz_targets/parser.rs"
2019-03-21 17:06:48 +00:00
[[bin]]
name = "reparse"
path = "fuzz_targets/reparse.rs"
[lints]
workspace = true