did_common 0.3.0

A rust library for parsing Decentralized Identifiers (DIDs), with no_std support.
Documentation
1
2
3
4
5
6
7
#[macro_export]
macro_rules! did {
	($did: expr) => {
		//TODO: If cannot parse, should generate error w/ parsing error
		Did::parse($did).unwrap()
	};
}