]> git.lizzy.rs Git - rust.git/blob - .cargo/config
Merge #396
[rust.git] / .cargo / config
1 [alias]
2 # Automatically generates the ast and syntax kinds files
3 gen-syntax   = "run --package tools --bin tools -- gen-syntax"
4 # Extracts the tests from 
5 gen-tests    = "run --package tools --bin tools -- gen-tests"
6 # Installs the visual studio code extension
7 install-code = "run --package tools --bin tools -- install-code"
8 # Formats the full repository or installs the git hook to do it automatically.
9 format       = "run --package tools --bin tools -- format"
10 format-hook  = "run --package tools --bin tools -- format-hook"
11 # Runs the fuzzing test suite (currently only parser)
12 fuzz-tests   = "run --package tools --bin tools -- fuzz-tests"
13
14 render-test  = "run --package ra_cli -- render-test"
15 # Parse a file. This should be piped the file contents
16 parse        = "run --package ra_cli -- parse"