summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 7e9e6447fb1cde7b0232652594185b5a31b0f9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ipfs-api

[![Travis](https://img.shields.io/travis/ferristseng/rust-ipfs-api.svg)](https://travis-ci.org/ferristseng/rust-ipfs-api)
[![Crates.io](https://img.shields.io/crates/v/ipfs-api.svg)](https://crates.io/crates/ipfs-api)
[![Docs.rs](https://docs.rs/ipfs-api/badge.svg)](https://docs.rs/ipfs-api/)

Rust library for connecting to the IPFS HTTP API using tokio.

### Usage

```toml
[dependencies]
ipfs-api = "0.4.0-alpha.1"
```

### Examples

Write a file to IPFS:

```rust
#
use ipfs_api::IpfsClient;
use std::io::Cursor;
use tokio_core::reactor::Core;

let mut core = Core::new().unwrap();
let client = IpfsClient::default(&core.handle());
let data = Cursor::new("Hello World!");

let req = client.add(data);
let res = core.run(req).unwrap();

println!("{}", res.hash);
```

Read a file from IPFS:

```rust
#
use futures::stream::Stream;
use ipfs_api::IpfsClient;
use std::io::{self, Write};
use tokio_core::reactor::Core;

let mut core = Core::new().unwrap();
let client = IpfsClient::default(&core.handle());

let req = client.get("/test/file.json").concat2();
let res = core.run(req).unwrap();
let out = io::stdout();
let mut out = out.lock();

out.write_all(&res).unwrap();
```
There are also a bunch of examples included in the project, which
I used for testing

You can run any of the examples with cargo:

```sh
$ cargo run -p ipfs-api --example add_file
```

## License

Licensed under either of

 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)

at your option.

### Contribution

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.