-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
64 lines (45 loc) · 807 Bytes
/
Copy pathmakefile
File metadata and controls
64 lines (45 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
run:
cargo run
build:
cargo build
release:
cargo build --release
test:
cargo test
check:
cargo check
fmt:
cargo fmt
clean:
cargo clean
ping-test:
cargo test --test ping_check -- --nocapture
setup:
chmod +x scripts/*.sh
chmod +x .githooks/*
git config core.hooksPath .githooks
clippy:
cargo clippy --all-targets --all-features -- -D warnings
audit:
cargo audit
deny:
cargo deny check
fix:
./scripts/fix.sh
verify:
./scripts/check.sh
ci:
cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings
cargo test --all-features
cargo build --all-targets --all-features
watch:
cargo watch -x run
watch-test:
cargo watch -x test
watch-check:
cargo watch -x "clippy --all-targets --all-features -- -D warnings"
tree:
cargo tree
update:
cargo update