summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-04-04 19:50:20 -0400
committerFerris Tseng <ferristseng@fastmail.fm>2021-04-04 19:50:20 -0400
commitac1b7f7472dc0ee5186f3ec755ff0b65f03f4d07 (patch)
treebe3672be8e80036dd7e4c186873132e6481ef2bb
parent554debce4fcb833cce3c8d0657846d089062d6f8 (diff)
reexport everything
-rw-r--r--ipfs-api/src/lib.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs
index 4007acc..9ee0396 100644
--- a/ipfs-api/src/lib.rs
+++ b/ipfs-api/src/lib.rs
@@ -154,17 +154,11 @@
//! ```
//!
-pub use ipfs_api_prelude::{
- self,
- request::{self, KeyType, Logger, LoggingLevel, ObjectTemplate},
- response, IpfsApi, TryFromUri,
-};
-
#[cfg(feature = "with-hyper")]
-pub use ipfs_api_backend_hyper::IpfsClient;
+pub use ipfs_api_backend_hyper::*;
#[cfg(feature = "with-actix")]
-pub use ipfs_api_backend_actix::IpfsClient;
+pub use ipfs_api_backend_actix::*;
#[cfg(not(any(feature = "with-actix", feature = "with-hyper")))]
compile_error!("Pick exactly one of these features: with-hyper, with-actix");