11 releases

0.3.0 Oct 1, 2020
0.2.8 Sep 18, 2020
0.2.5 Aug 30, 2020
0.1.0 Aug 19, 2020

#7 in #multiformats

Download history 1/week @ 2023-12-11 19/week @ 2024-01-08 32/week @ 2024-02-19 34/week @ 2024-02-26 20/week @ 2024-03-04 22/week @ 2024-03-11 19/week @ 2024-03-18

98 downloads per month

MIT license

22KB
420 lines

rust-cid

Build Status Crates.io License Documentation Dependency Status Coverage Status

CID implementation in Rust.

Table of Contents

Install

First add this to your Cargo.toml

[dependencies]
cid = "*"
multihash = "0.10"

Then run cargo build.

Usage

use cid::{Cid, Codec, Version};
use multihash::Sha2_256;
use std::convert::TryFrom;

fn main() {
    let h = Sha2_256::digest(b"beep boop");

    let cid = Cid::new(Version::V1, Codec::DagProtobuf, h).unwrap();

    let data = cid.to_bytes();
    let out = Cid::try_from(data).unwrap();

    assert_eq!(cid, out);

    let cid_string = cid.to_string();
    /// bafybeieq5jui4j25lacwomsqgjeswwl3y5zcdrresptwgmfylxo2depppq
}

Maintainers

Captain: @dignifiedquire.

Contribute

Contributions welcome. Please check out the issues.

Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © 2017 Friedel Ziegelmayer

Dependencies

~0.3–0.8MB
~19K SLoC