aboutsummaryrefslogtreecommitdiff
path: root/.cargo/config
blob: b9db30c969e853b207621647c83042def12e1953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[alias]
# Automatically generates the ast and syntax kinds files
gen-syntax   = "run --package tools --bin tools -- gen-syntax"
# Extracts the tests from 
gen-tests    = "run --package tools --bin tools -- gen-tests"
# Installs the visual studio code extension
install-code = "run --package tools --bin tools -- install-code"
# Formats the full repository or installs the git hook to do it automatically.
format       = "run --package tools --bin tools -- format"
format-hook  = "run --package tools --bin tools -- format-hook"
# Runs the fuzzing test suite (currently only parser)
fuzz-tests   = "run --package tools --bin tools -- fuzz-tests"

render-test  = "run --package ra_cli -- render-test"
# Parse a file. This should be piped the file contents
parse        = "run --package ra_cli -- parse"