From fe8ac1e5832435aeff6da1f618c5bba2b55846c5 Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Mon, 28 Oct 2019 23:21:47 +0200 Subject: [PATCH] Add warnings to Cargo.toml features --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc65d0a..8102b88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,12 +28,15 @@ path = "src/lib.rs" [features] unstable = [] default = ["std"] -fuzztarget = [] std = ["rand/std"] recovery = [] endomorphism = [] lowmemory = [] + +# Do not use this feature! HAZMAT. (meant for Bitcoin Core only) dont_replace_c_symbols = [] +# Do not use this feature! HAZMAT. (meant for Fuzzing only. this is *BROKEN CRYPTOGRAPHY*) +fuzztarget = [] [dev-dependencies] rand = "0.6"