Pinned serde version and re-export bech32

This commit is contained in:
Elichai Turkel 2019-08-16 16:08:14 -04:00
parent fbc85105b3
commit 747e9ce75c
No known key found for this signature in database
GPG Key ID: 9383CDE9E8E66A7F
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ bitcoinconsensus = { version = "0.16", optional = true }
secp256k1 = "0.12"
[dependencies.serde]
version = "1"
version = "=1.0.98"
features = ["derive"]
optional = true
@ -36,7 +36,7 @@ version = "=0.3.2"
[dev-dependencies]
serde_derive = "1"
serde_derive = "=1.0.98"
serde_json = "1"
serde_test = "1"
secp256k1 = { version = "0.12", features = [ "rand" ] }

View File

@ -47,8 +47,8 @@
// Re-exported dependencies.
pub extern crate bitcoin_hashes as hashes;
pub extern crate secp256k1;
pub extern crate bech32;
extern crate bech32;
extern crate byteorder;
extern crate hex;
#[cfg(feature = "serde")] extern crate serde;