8000 Pin serde and re-export bech32 by elichai · Pull Request #316 · rust-bitcoin/rust-bitcoin · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Pin serde and re-export bech32 #316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin"
version = "0.19.0"
version = "0.19.1"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"
Expand All @@ -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

Expand All @@ -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" ] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
0