ipfsapi 0.4.0

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

use ipfsapi::IpfsApi;

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

    let hash = api.name_resolve("gkbrk.com").unwrap();

    println!("{}", hash);
}