Skip to content

Commit

Permalink
Fix conditional imports of client::*
Browse files Browse the repository at this point in the history
  • Loading branch information
afilini committed Aug 3, 2020
1 parent 3502a5c commit 5a5fdca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "electrum-client"
version = "0.2.0-beta.2"
version = "0.2.0-beta.3"
authors = ["Alekos Filini <[email protected]>"]
license = "MIT"
homepage = "https://github.com/MagicalBitcoin/rust-electrum-client"
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,9 @@ mod types;

pub use api::ElectrumApi;
pub use batch::Batch;
#[cfg(any(
all(feature = "proxy", feature = "use-openssl"),
all(feature = "proxy", feature = "use-rustls")
))]
pub use client::*;
pub use types::*;

0 comments on commit 5a5fdca

Please sign in to comment.