wolfcrypt-rs 0.1.0

Low-level FFI bindings for wolfSSL/wolfCrypt cryptographic library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright wolfSSL Inc.
# SPDX-License-Identifier: MIT

include ../Makefile

test:
	cargo test --all-targets
	cargo test --release --all-targets

clippy-fix:
	cargo +nightly clippy --all-targets --fix --allow-dirty -- -W clippy::all  -W clippy::pedantic

ci: format clippy test api-diff-main

.PHONY: test ci clippy-fix