Skip to content

Commit 29316ef

Browse files
committed
add warning about fuzzing being enabled
1 parent 85075a6 commit 29316ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

secp256k1-sys/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
#[cfg(any(test, feature = "std"))]
2727
extern crate core;
2828

29+
#[cfg(rust_secp_fuzz)]
30+
const THIS_UNUSED_CONSTANT_IS_YOUR_WARNING_THAT_ALL_THE_CRYPTO_IN_THIS_LIB_IS_DISABLED_FOR_FUZZING: usize = 0;
31+
2932
#[macro_use]
3033
mod macros;
3134
pub mod types;

0 commit comments

Comments
 (0)