Merge pull request #136 from elichai/2019-08-rand-std

Propagating std to rand dependency
This commit is contained in:
Jonas Nick 2019-08-02 11:22:02 +00:00 committed by GitHub
commit 6f2cc95e6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "secp256k1"
version = "0.15.0"
version = "0.15.1"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
license = "CC0-1.0"
@ -17,7 +17,6 @@ links = "secp256k1"
# Should make docs.rs show all functions, even those behind non-default features
[package.metadata.docs.rs]
features = [ "rand", "serde", "recovery", "endomorphism" ]
all-features = true
[build-dependencies]
cc = ">= 1.0.28"
@ -30,7 +29,7 @@ path = "src/lib.rs"
unstable = []
default = ["std"]
fuzztarget = []
std = []
std = ["rand/std"]
recovery = []
endomorphism = []