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
# make
rq:
cargo run --quiet
# make b
b:
@cargo make b
# make br
br:
@cargo make br
# make r
r:
@cargo make r
# make rr
rr:
@cargo make rr
test_all:
@cargo make t_all
test_priv_all:
@cargo make t_priv_all
test_datetime:
@cargo make t_datetime
test_stringlib:
@cargo make t_stringlib
run_stringlib_alignment:
@cargo make r_stringlib_alignment
# .SILENT: flow | rflow | run | br | b | r | rr
lint:
cargo clippy
watch_check_tests_and_all:
@cargo watch -w=src -w=tests -w=examples --shell='cargo check --features all && ./scripts/compiled.sh || ./scripts/compile_error.sh' -c