13 releases

0.4.0 Oct 1, 2022
0.3.0 Aug 4, 2019
0.2.2 May 11, 2018
0.2.1 Mar 12, 2018
0.1.5 Oct 18, 2017

#1982 in Network programming

Download history 2245/week @ 2024-01-25 2223/week @ 2024-02-01 2272/week @ 2024-02-08 2290/week @ 2024-02-15 2373/week @ 2024-02-22 2201/week @ 2024-02-29 2270/week @ 2024-03-07 2118/week @ 2024-03-14 2132/week @ 2024-03-21 1955/week @ 2024-03-28 2229/week @ 2024-04-04 2346/week @ 2024-04-11 2184/week @ 2024-04-18 2208/week @ 2024-04-25 2197/week @ 2024-05-02 1777/week @ 2024-05-09

8,774 downloads per month

MIT license

23KB
490 lines

Rust IPFS API Client

Crates.io Docs.rs

A client library for the IPFS API.

This library allows you to use the local IPFS daemon from Rust.

Usage

[dependencies]
ipfsapi = "0.4"

Examples

Reading a file from IPFS

Here's an example that gets the contents of a file from IPFS and displays it.

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

let bytes = api.cat("QmWATWQ7fVPP2EFGu71UkfnqhYXDYH566qy47CnJDgvs8u").unwrap();
let data = String::from_utf8(bytes.collect()).unwrap();

println!("{}", data);

The code gets the content of the IPFS hash and displays "Hello World".

Subsribing to messages on IPFS Pubsub

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

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

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

Implemented Functionality

  • Getting file contents from IPFS (cat)
  • Pubsub
  • IPNS publish and resolve
  • Object/Hash stats (size, etc.)
  • Version information of the daemon
  • Pinning and unpinning files
  • Shut down IPFS daemon
  • Get and put blocks

Dependencies

~2.4–3MB
~90K SLoC