]> git.lizzy.rs Git - rust.git/blob - .cargo/config
Merge #617 #618
[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 ra_lsp_server
7 install-lsp = "install --path crates/ra_lsp_server --force"
8 # Installs the visual studio code extension
9 install-code = "run --package tools --bin tools -- install-code"
10 # Formats the full repository or installs the git hook to do it automatically.
11 format       = "run --package tools --bin tools -- format"
12 format-hook  = "run --package tools --bin tools -- format-hook"
13 # Runs the fuzzing test suite (currently only parser)
14 fuzz-tests   = "run --package tools --bin tools -- fuzz-tests"
15
16 render-test  = "run --package ra_cli -- render-test"
17 # Parse a file. This should be piped the file contents
18 parse        = "run --package ra_cli -- parse"