did-rs

Crates.iodid-rs
lib.rsdid-rs
version0.1.5
sourcesrc
created_at2019-07-25 20:51:04.898243+00
updated_at2019-07-25 21:05:11.743443+00
descriptionImplements a parser for decentralized identifiers
homepage
repository
max_upload_size
id151647
size21,745
Eduardo Leegwater Simões (ureeves)

documentation

README

did

Implements a parser for decentralized identifiers. Uses pest for now to define the grammar of the generic scheme defined in the specification. This will be changed in the future to something more performant like nom.

Usage

use did_rs::DID;

fn main() {
    let d = DID::parse("did:example:").expect("failed");
    println!("{}", d);
}
Commit count: 0

cargo fmt