ma-did 0.4.0

Rust implementation of the 間 (did:ma) DID method for secure identities and messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: build clean distclean lint

build:
	cargo build

lint:
	cargo fmt --check
	cargo clippy --all-features -- -D warnings
	mdl .

clean:
	cargo clean -p ma-did

distclean: clean
	rm -rf target
	rm -f Cargo.lock