Rust library for connecting to the IPFS HTTP API using tokio.
[dependencies]
ipfs-api = "0.5.2"You can use actix-web as a backend instead of hyper.
[dependencies]
ipfs-api = { version = "0.5.2", features = ["actix"], default-features = false }#
use hyper::rt::Future;
use ipfs_api::IpfsClient;
use std::io::Cursor;
let client = IpfsClient::default();
let data = Cursor::new("Hello World!");
let req = client
.add(data)
.map(|res| {
println!("{}", res.hash);
})
.map_err(|e| eprintln!("{}", e));
hyper::rt::run(req);#
use futures::future::{Future, lazy};
use ipfs_api::IpfsClient;
use std::io::Cursor;
let client = IpfsClient::default();
let data = Cursor::new("Hello World!");
let req = client
.add(data)
.map(|res| {
println!("{}", res.hash);
})
.map_err(|e| eprintln!("{}", e));
actix_rt::System::new("test").block_on(req);#
use futures::{Future, Stream};
use ipfs_api::IpfsClient;
use std::io::{self, Write};
let client = IpfsClient::default();
let req = client
.get("/test/file.json")
.concat2()
.map(|res| {
let out = io::stdout();
let mut out = out.lock();
out.write_all(&res).unwrap();
})
.map_err(|e| eprintln!("{}", e));
hyper::rt::run(req);#
use futures::{Future, lazy, Stream};
use ipfs_api::IpfsClient;
use std::io::{self, Write};
let client = IpfsClient::default();
let req = client
.get("/test/file.json")
.concat2()
.map(|res| {
let out = io::stdout();
let mut out = out.lock();
out.write_all(&res).unwrap();
})
.map_err(|e| eprintln!("{}", e));
actix_rt::System::new("test").block_on(req);There are also a bunch of examples included in the project, which I used for testing
For a list of examples, run:
$ cargo run --exampleYou can run any of the examples with cargo:
$ cargo run -p ipfs-api --example add_fileTo run an example with the actix-web backend, use:
$ cargo run -p ipfs-api --features actix --no-default-features --example add_fileLicensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.