ipfsapi 0.4.0

Crate for interfacing with the IPFS api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate ipfsapi;

use ipfsapi::IpfsApi;

fn main() {
    let api = IpfsApi::new("127.0.0.1", 5001);

    //let messages = api.pubsub_subscribe("chat").unwrap();

    //for message in messages {
    //    println!("{:?}", message);
    //}
}