rust/.cargo/config

17 lines
801 B
Plaintext
Raw Normal View History

2018-02-03 03:51:06 -06:00
[alias]
2018-10-04 15:43:58 -05:00
# Automatically generates the ast and syntax kinds files
2018-12-31 07:14:06 -06:00
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"
2018-12-31 07:14:06 -06:00
# 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"
2018-07-30 14:17:33 -05:00
2018-12-31 07:14:06 -06:00
render-test = "run --package ra_cli -- render-test"
# Parse a file. This should be piped the file contents
parse = "run --package ra_cli -- parse"