Skip to content

Commit c895ff4

Browse files
committed
Merge #30: Export bitcoin dependency
f1f91d6 Export bitcoin dependency (Steven Roose) Pull request description: We use the rust-bitcoin types. I know we should in the long term move away from that, but for now we still have several of the types that we reuse. Top commit has no ACKs. Tree-SHA512: da1905b574b4d575dcc28852f8992e2325c801124cca611755f0aec2e847c647ec0d6f01b0a60291211e46a51c78d669d0b9c9154410ba1e534e978d08098821
2 parents effc26e + f1f91d6 commit c895ff4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elements"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = ["Andrew Poelstra <apoelstra@blockstream.com>"]
55
description = "Library with support for de/serialization, parsing and executing on data structures and network messages related to Elements"
66
license = "CC0-1.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#![deny(unused_mut)]
2626
#![deny(missing_docs)]
2727

28-
extern crate bitcoin;
28+
pub extern crate bitcoin;
2929
#[cfg(feature = "serde")] extern crate serde;
3030

3131
#[cfg(test)] extern crate rand;

0 commit comments

Comments
 (0)