pai-strace 0.1.4

A strace-like tool created using pai
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tasks.build]
command = "cross"
args = ["build", "--target-dir=output", "--target=${@}"]

[tasks.fixfmt]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--", "--emit=files"]

[tasks.release]
command = "cross"
dependencies = ["update", "fixfmt"]
args = ["build", "--frozen", "--target-dir=output", "--release", "--target=${@}"]

[tasks.update]
command = "cargo"
args = ["update"]