kinda works except not

This commit is contained in:
nora 2022-03-15 21:24:03 +01:00
parent 869329c430
commit d54bb57e14
9 changed files with 302 additions and 6 deletions

25
fuzz/Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[package]
name = "fuzz-rustc-ast-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.fuzz-rustc-ast]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "ast"
path = "fuzz_targets/ast.rs"
test = false
doc = false