diff --git a/Cargo.toml b/Cargo.toml index bf87266..1b878af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrum-client" -version = "0.2.0-beta.2" +version = "0.2.0-beta.3" authors = ["Alekos Filini "] license = "MIT" homepage = "https://github.com/MagicalBitcoin/rust-electrum-client" diff --git a/src/lib.rs b/src/lib.rs index 74a862f..9b96983 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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::*;