Refactor fuzzing to be a C-callable library plus rust binaries
[rust-lightning] / fuzz / src / lib.rs
diff --git a/fuzz/src/lib.rs b/fuzz/src/lib.rs
new file mode 100644 (file)
index 0000000..fde5316
--- /dev/null
@@ -0,0 +1,15 @@
+extern crate bitcoin;
+extern crate bitcoin_hashes;
+extern crate lightning;
+extern crate secp256k1;
+extern crate hex;
+
+mod utils;
+
+pub mod chanmon_deser;
+pub mod chanmon_consistency;
+pub mod full_stack;
+pub mod peer_crypt;
+pub mod router;
+
+pub mod msg_targets;