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 |
#6 in #multiformats
22KB
420 lines
rust-cid
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.9MB
~19K SLoC