You've already forked trussed-auth
mirror of
https://github.com/trussed-dev/trussed-auth.git
synced 2026-03-11 16:37:04 -07:00
This patch splits the trussed-auth crate into two crates: trussed-auth only defines the AuthExtension and can be used by clients or other backends implementing the extension. trussed-auth-backend contains the AuthBackend that implements the extension using the filesystem.
21 lines
448 B
Makefile
21 lines
448 B
Makefile
# Copyright (C) Nitrokey GmbH
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
.PHONY: check
|
|
check:
|
|
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets --workspace
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
cargo clippy --all-features --all-targets --workspace -- --deny warnings
|
|
cargo fmt --all -- --check
|
|
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --workspace
|
|
reuse lint
|
|
|
|
.PHONY: test
|
|
test:
|
|
cargo test --all-features --workspace
|
|
|
|
.PHONY: ci
|
|
ci: check lint test
|