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