summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/lib.rs')
-rw-r--r--ipfs-api/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs
index 1e584c3..0ef8fe0 100644
--- a/ipfs-api/src/lib.rs
+++ b/ipfs-api/src/lib.rs
@@ -6,6 +6,8 @@
// copied, modified, or distributed except according to those terms.
//
+#![recursion_limit = "128"]
+
//! Rust library for connecting to the IPFS HTTP API using tokio.
//!
//! ## Usage
@@ -77,6 +79,7 @@ extern crate bytes;
#[macro_use]
extern crate error_chain;
extern crate futures;
+extern crate http;
extern crate hyper;
extern crate hyper_multipart_rfc7578 as hyper_multipart;
extern crate serde;
@@ -85,6 +88,7 @@ extern crate serde_derive;
extern crate serde_json;
extern crate serde_urlencoded;
extern crate tokio;
+extern crate tokio_codec;
extern crate tokio_io;
pub use client::IpfsClient;