aboutsummaryrefslogtreecommitdiff
path: root/.cargo/config
diff options
context:
space:
mode:
Diffstat (limited to '.cargo/config')
-rw-r--r--.cargo/config25
1 files changed, 2 insertions, 23 deletions
diff --git a/.cargo/config b/.cargo/config
index 9f9b24a49..3812e1e2d 100644
--- a/.cargo/config
+++ b/.cargo/config
@@ -1,25 +1,4 @@
1[alias] 1[alias]
2# Automatically generates the ast and syntax kinds files 2xtask = "run --package xtask --bin xtask --"
3gen-syntax = "run --package ra_tools --bin ra_tools -- gen-syntax"
4 3
5# Extracts the tests from 4install-ra = "run --package xtask --bin xtask -- install" # for backwards compat
6gen-tests = "run --package ra_tools --bin ra_tools -- gen-tests"
7
8build-website = "run --package website-gen"
9
10# Installs the visual studio code extension
11install-ra = "run --package ra_tools --bin ra_tools -- install-ra"
12install-code = "run --package ra_tools --bin ra_tools -- install-ra" # just an alias
13
14# Formats the full repository or installs the git hook to do it automatically.
15format = "run --package ra_tools --bin ra_tools -- format"
16format-hook = "run --package ra_tools --bin ra_tools -- format-hook"
17
18# Run clippy
19lint = "run --package ra_tools --bin ra_tools -- lint"
20
21# Runs the fuzzing test suite (currently only parser)
22fuzz-tests = "run --package ra_tools --bin ra_tools -- fuzz-tests"
23
24# Parse a file. This should be piped the file contents
25parse = "run --package ra_cli -- parse"