Files
trussed-auth/Makefile
Robin Krahl 97eeb4c4ff Add Auth extension and backend with PIN handling
This patch implements a basic Auth extension and backend that provides
PIN handling.  Policies still have to be enforced by the client.

Fixes https://github.com/trussed-dev/trussed-auth/issues/1
2023-02-20 10:14:12 +01:00

21 lines
394 B
Makefile

# Copyright (C) Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
.PHONY: check
check:
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets
.PHONY: lint
lint:
cargo clippy --all-features --all-targets -- --deny warnings
cargo fmt -- --check
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps
reuse lint
.PHONY: test
test:
cargo test --all-features
.PHONY: ci
ci: check lint test