/ .cargo / config.toml
config.toml
 1  # Find the full list of available options here: https://doc.rust-lang.org/cargo/reference/config.html
 2  
 3  [alias]
 4  fmt-amaru = "fmt --all -- --check"
 5  clippy-amaru = "clippy --workspace --all-targets -- -D warnings"
 6  check-amaru = "check --workspace --all-targets"
 7  build-amaru = "build --workspace --all-targets"
 8  test-amaru = "test --workspace --all-targets"
 9  deny-amaru = "deny check licenses --config .cargo/deny.toml"
10  
11  [env]
12  CLIPPY_CONF_DIR = ".cargo"