Fix conditional imports of client::*

This commit is contained in:
Alekos Filini 2020-08-03 11:11:04 +02:00
parent 3502a5c7ab
commit 5a5fdca348
No known key found for this signature in database
GPG Key ID: 5E8AFC3034FDFA4F
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "electrum-client"
version = "0.2.0-beta.2"
version = "0.2.0-beta.3"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
license = "MIT"
homepage = "https://github.com/MagicalBitcoin/rust-electrum-client"

View File

@ -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::*;