diff options
Diffstat (limited to 'lib/xixanta/fuzz/Cargo.toml')
| -rw-r--r-- | lib/xixanta/fuzz/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/xixanta/fuzz/Cargo.toml b/lib/xixanta/fuzz/Cargo.toml new file mode 100644 index 0000000..3b3498d --- /dev/null +++ b/lib/xixanta/fuzz/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "xixanta-fuzz" +version = "0.0.0" +publish = false +edition = "2021" + +[workspace] +members = [] + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.xixanta] +path = ".." + +[[bin]] +name = "fuzz_target_1" +path = "fuzz_targets/fuzz_target_1.rs" +test = false +doc = false +bench = false |
