add warning about fuzzing being enabled
This commit is contained in:
parent
85075a654c
commit
29316efff5
|
@ -26,6 +26,9 @@
|
||||||
#[cfg(any(test, feature = "std"))]
|
#[cfg(any(test, feature = "std"))]
|
||||||
extern crate core;
|
extern crate core;
|
||||||
|
|
||||||
|
#[cfg(rust_secp_fuzz)]
|
||||||
|
const THIS_UNUSED_CONSTANT_IS_YOUR_WARNING_THAT_ALL_THE_CRYPTO_IN_THIS_LIB_IS_DISABLED_FOR_FUZZING: usize = 0;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
mod macros;
|
mod macros;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
|
|
Loading…
Reference in New Issue