2 unstable releases
0.2.0 | Jul 28, 2019 |
---|---|
0.1.0 | Jul 13, 2019 |
#136 in #codes
41KB
966 lines
iscc-rs
Rust implementation of the ISCC specification
Documentation
Usage
Add this to your Cargo.toml
:
[dependencies]
iscc-rs = "0.2"
Example
This example shows how to create an ISCC Code.
use std::error::Error;
use iscc::{content_id_text, data_id, instance_id, meta_id};
fn main() -> Result<(), Box<dyn Error>> {
// Generate ISCC Component Codes
let (mid, _title, _extra) = meta_id("Title of Content", "");
let cid = content_id_text("some text", false);
let did = data_id("tests/test_data/mediafile.html")?;
let (iid, _tophash) = instance_id("tests/test_data/mediafile.html")?;
// Join ISCC Components to fully qualified ISCC Code
let iscc_code = [mid, cid, did, iid].join("-");
println!("ISCC: {}", iscc_code);
Ok(())
}
Dependencies
~12MB
~324K SLoC