blob: 69d6c97c6783a2f62ef4a1e02611f6c4a9318ac8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all: build build-examples check-fmt check-clippy check-tests check-examples
build:
cargo build
build-examples:
cargo build --examples
check-fmt:
cargo fmt --check
check-clippy:
cargo clippy -- -Dwarnings -Aclippy::new_without_default
check-tests:
cargo test
check-examples:
cargo test --examples
|