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
lint:
cargo clippy
fmt:
cargo fmt
build-web:
rm -rf dist \
&& cd web \
&& yarn install --network-timeout 600000 && yarn build \
&& cp -rf dist ../
bench:
cargo bench
dev:
RUST_LOG=INFO cargo watch -w src -x 'run -- -c=~/github/pingap/conf/pingap.toml'
udeps:
cargo +nightly udeps
msrv:
cargo msrv verify
bloat:
cargo bloat --release --crates
outdated:
cargo outdated
test:
cargo test
release:
cargo build --release
ls -lh target/release
hooks:
cp hooks/* .git/hooks/