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
# make
rq:
cargo run --quiet
# make br
br:
cargo build --release
# make b
b:
cargo build
# make r
r:
cargo run
# make rr
rr:
cargo run --release
# make t
t:
cargo test -- --show-output
# make test
test:
cargo test -- --show-output
# make p
p:
# for publishing to crates.io
cargo build --release
# cargo run --release
cargo doc
cargo test
cargo publish
# make d
d:
cargo doc --open --document-private-items