update `rand` to 0.4
This commit is contained in:
parent
6f27422c4c
commit
d4149be931
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
# [Unreleased]
|
# [Unreleased]
|
||||||
|
|
||||||
|
* Update `rand` to 0.4 and `gcc` 0.3 to `cc` 1.0. (`rand` 0.5 exists but has a lot of breaking changes and no longer compiles with 1.14.0.)
|
||||||
|
|
||||||
# 0.10.0 - 2018-07-25
|
# 0.10.0 - 2018-07-25
|
||||||
|
|
||||||
* A [complete API overhaul](https://github.com/rust-bitcoin/rust-secp256k1/pull/27) to move many runtime errors into compiletime errors
|
* A [complete API overhaul](https://github.com/rust-bitcoin/rust-secp256k1/pull/27) to move many runtime errors into compiletime errors
|
||||||
|
|
|
@ -26,14 +26,14 @@ default = []
|
||||||
fuzztarget = []
|
fuzztarget = []
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.3"
|
rand = "0.4"
|
||||||
serde_test = "1.0"
|
serde_test = "1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
|
|
||||||
[dependencies.rand]
|
[dependencies.rand]
|
||||||
version = "0.3"
|
version = "0.4"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.serde]
|
[dependencies.serde]
|
||||||
|
|
Loading…
Reference in New Issue