Merge pull request #136 from elichai/2019-08-rand-std
Propagating std to rand dependency
This commit is contained in:
commit
6f2cc95e6c
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
||||||
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
|
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
@ -17,7 +17,6 @@ links = "secp256k1"
|
||||||
# Should make docs.rs show all functions, even those behind non-default features
|
# Should make docs.rs show all functions, even those behind non-default features
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = [ "rand", "serde", "recovery", "endomorphism" ]
|
features = [ "rand", "serde", "recovery", "endomorphism" ]
|
||||||
all-features = true
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cc = ">= 1.0.28"
|
cc = ">= 1.0.28"
|
||||||
|
@ -30,7 +29,7 @@ path = "src/lib.rs"
|
||||||
unstable = []
|
unstable = []
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
fuzztarget = []
|
fuzztarget = []
|
||||||
std = []
|
std = ["rand/std"]
|
||||||
recovery = []
|
recovery = []
|
||||||
endomorphism = []
|
endomorphism = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue