diff options
Diffstat (limited to '.cargo/config')
-rw-r--r-- | .cargo/config | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.cargo/config b/.cargo/config index c319d33f2..b9db30c96 100644 --- a/.cargo/config +++ b/.cargo/config | |||
@@ -1,10 +1,16 @@ | |||
1 | [alias] | 1 | [alias] |
2 | # Automatically generates the ast and syntax kinds files | 2 | # Automatically generates the ast and syntax kinds files |
3 | gen-syntax = "run --package tools --bin tools -- gen-syntax" | 3 | gen-syntax = "run --package tools --bin tools -- gen-syntax" |
4 | gen-tests = "run --package tools --bin tools -- gen-tests" | 4 | # Extracts the tests from |
5 | gen-tests = "run --package tools --bin tools -- gen-tests" | ||
6 | # Installs the visual studio code extension | ||
5 | install-code = "run --package tools --bin tools -- install-code" | 7 | install-code = "run --package tools --bin tools -- install-code" |
6 | format = "run --package tools --bin tools -- format" | 8 | # Formats the full repository or installs the git hook to do it automatically. |
7 | format-hook = "run --package tools --bin tools -- format-hook" | 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" | ||
8 | 13 | ||
9 | render-test = "run --package ra_cli -- render-test" | 14 | render-test = "run --package ra_cli -- render-test" |
10 | parse = "run --package ra_cli -- parse" | 15 | # Parse a file. This should be piped the file contents |
16 | parse = "run --package ra_cli -- parse" | ||