summaryrefslogtreecommitdiffstats
path: root/ipfs-api/examples/mfs.rs
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@gmail.com>2019-02-13 20:38:01 -0500
committerGitHub <noreply@github.com>2019-02-13 20:38:01 -0500
commitde3588c7c369ea4f4cca66f89c12511d1170e5f5 (patch)
tree965a5a80b387c0eb719ca568a96a729d9d3f2ade /ipfs-api/examples/mfs.rs
parentf125fdbde329095419630e02ebf33d2c73aeced7 (diff)
parent4bdebbf4d1d1edb839eba860b013e3fdb870f66e (diff)
Merge pull request #28 from ferristseng/actix
Add actix feature for using actix-web
Diffstat (limited to 'ipfs-api/examples/mfs.rs')
-rw-r--r--ipfs-api/examples/mfs.rs19
1 files changed, 16 insertions, 3 deletions
diff --git a/ipfs-api/examples/mfs.rs b/ipfs-api/examples/mfs.rs
index 8bea192..97d1824 100644
--- a/ipfs-api/examples/mfs.rs
+++ b/ipfs-api/examples/mfs.rs
@@ -6,7 +6,10 @@
// copied, modified, or distributed except according to those terms.
//
+#[cfg(feature = "actix")]
+extern crate actix_web;
extern crate futures;
+#[cfg(feature = "hyper")]
extern crate hyper;
extern crate ipfs_api;
@@ -46,7 +49,7 @@ fn main() {
let file_rm = client.files_rm("/test", true);
- hyper::rt::run(
+ let fut =
mkdir
.and_then(|_| {
println!("making dirs /test/does/not/exist/yet...");
@@ -78,6 +81,16 @@ fn main() {
file_rm
})
.map(|_| println!("done!"))
- .map_err(|e| eprintln!("{}", e)),
- )
+ .map_err(|e| eprintln!("{}", e))
+ ;
+
+ #[cfg(feature = "hyper")]
+ hyper::rt::run(fut);
+ #[cfg(feature = "actix")]
+ actix_web::actix::run(|| {
+ fut.then(|_| {
+ actix_web::actix::System::current().stop();
+ Ok(())
+ })
+ });
}