sodoken 0.0.902-alpha

libsodium wrapper providing tokio safe memory secure api access.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# sodoken Makefile

.PHONY: all static test

SHELL = /usr/bin/env sh -eu

all: static test

test:
	cargo build --all-targets --all-features
	RUST_BACKTRACE=1 cargo test --all-features

static:
	cargo fmt -- --check
	cargo clippy --all-features -- -Dwarnings
	cargo install cargo-rdme
	cargo rdme --force
	@if [ "${CI}x" != "x" ]; then git diff --exit-code; fi