Add warnings to Cargo.toml features

This commit is contained in:
Elichai Turkel 2019-10-28 23:21:47 +02:00
parent 349b2eac06
commit fe8ac1e583
No known key found for this signature in database
GPG Key ID: 9383CDE9E8E66A7F
1 changed files with 4 additions and 1 deletions

View File

@ -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"