1234567891011121314151617181920212223 |
- [package]
- name = "ion-shell-fuzz"
- version = "0.0.1"
- authors = ["Automatically generated"]
- publish = false
- [package.metadata]
- cargo-fuzz = true
- [dependencies.ion-shell]
- 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"
|