Add warnings to Cargo.toml features
This commit is contained in:
parent
349b2eac06
commit
fe8ac1e583
|
@ -28,12 +28,15 @@ path = "src/lib.rs"
|
||||||
[features]
|
[features]
|
||||||
unstable = []
|
unstable = []
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
fuzztarget = []
|
|
||||||
std = ["rand/std"]
|
std = ["rand/std"]
|
||||||
recovery = []
|
recovery = []
|
||||||
endomorphism = []
|
endomorphism = []
|
||||||
lowmemory = []
|
lowmemory = []
|
||||||
|
|
||||||
|
# Do not use this feature! HAZMAT. (meant for Bitcoin Core only)
|
||||||
dont_replace_c_symbols = []
|
dont_replace_c_symbols = []
|
||||||
|
# Do not use this feature! HAZMAT. (meant for Fuzzing only. this is *BROKEN CRYPTOGRAPHY*)
|
||||||
|
fuzztarget = []
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.6"
|
rand = "0.6"
|
||||||
|
|
Loading…
Reference in New Issue