diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-10 23:49:51 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-10 23:49:51 +0100 |
commit | 3f5f9f0560fa662e770b607f05ec4881e4d011c5 (patch) | |
tree | 0f9009e016d326a6df81bec95a03281db3bf7d07 /.cargo/config | |
parent | 1c867b4e67126350579d6d598efeb6c03b503ddc (diff) | |
parent | 10d34532e3e96ffd92c11e667deb453188c28282 (diff) |
Merge #1391
1391: rename tools -> ra_tools r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to '.cargo/config')
-rw-r--r-- | .cargo/config | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.cargo/config b/.cargo/config index 51ae33910..3ac2ce336 100644 --- a/.cargo/config +++ b/.cargo/config | |||
@@ -1,22 +1,22 @@ | |||
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 ra_tools --bin ra_tools -- gen-syntax" |
4 | # Extracts the tests from | 4 | # Extracts the tests from |
5 | gen-tests = "run --package tools --bin tools -- gen-tests" | 5 | gen-tests = "run --package ra_tools --bin ra_tools -- gen-tests" |
6 | # Installs ra_lsp_server | 6 | # Installs ra_lsp_server |
7 | install-lsp = "install --path crates/ra_lsp_server --force" | 7 | install-lsp = "install --path crates/ra_lsp_server --force" |
8 | # Installs ra_lsp_server with the jemalloc feature | 8 | # Installs ra_lsp_server with the jemalloc feature |
9 | jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc" | 9 | jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc" |
10 | # Installs the visual studio code extension | 10 | # Installs the visual studio code extension |
11 | install-code = "run --package tools --bin tools -- install-code" | 11 | install-code = "run --package ra_tools --bin ra_tools -- install-code" |
12 | # Formats the full repository or installs the git hook to do it automatically. | 12 | # Formats the full repository or installs the git hook to do it automatically. |
13 | format = "run --package tools --bin tools -- format" | 13 | format = "run --package ra_tools --bin ra_tools -- format" |
14 | format-hook = "run --package tools --bin tools -- format-hook" | 14 | format-hook = "run --package ra_tools --bin ra_tools -- format-hook" |
15 | # Run clippy | 15 | # Run clippy |
16 | lint = "run --package tools --bin tools -- lint" | 16 | lint = "run --package ra_tools --bin ra_tools -- lint" |
17 | 17 | ||
18 | # Runs the fuzzing test suite (currently only parser) | 18 | # Runs the fuzzing test suite (currently only parser) |
19 | fuzz-tests = "run --package tools --bin tools -- fuzz-tests" | 19 | fuzz-tests = "run --package ra_tools --bin ra_tools -- fuzz-tests" |
20 | 20 | ||
21 | render-test = "run --package ra_cli -- render-test" | 21 | render-test = "run --package ra_cli -- render-test" |
22 | # Parse a file. This should be piped the file contents | 22 | # Parse a file. This should be piped the file contents |