From 10d34532e3e96ffd92c11e667deb453188c28282 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 11 Jun 2019 01:47:37 +0300 Subject: rename tools -> ra_tools This should help with caching on CI I hope (see .travis.yml before_cache) --- .cargo/config | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.cargo') diff --git a/.cargo/config b/.cargo/config index 51ae33910..3ac2ce336 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,22 +1,22 @@ [alias] # Automatically generates the ast and syntax kinds files -gen-syntax = "run --package tools --bin tools -- gen-syntax" +gen-syntax = "run --package ra_tools --bin ra_tools -- gen-syntax" # Extracts the tests from -gen-tests = "run --package tools --bin tools -- gen-tests" +gen-tests = "run --package ra_tools --bin ra_tools -- gen-tests" # Installs ra_lsp_server install-lsp = "install --path crates/ra_lsp_server --force" # Installs ra_lsp_server with the jemalloc feature jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc" # Installs the visual studio code extension -install-code = "run --package tools --bin tools -- install-code" +install-code = "run --package ra_tools --bin ra_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" +format = "run --package ra_tools --bin ra_tools -- format" +format-hook = "run --package ra_tools --bin ra_tools -- format-hook" # Run clippy -lint = "run --package tools --bin tools -- lint" +lint = "run --package ra_tools --bin ra_tools -- lint" # Runs the fuzzing test suite (currently only parser) -fuzz-tests = "run --package tools --bin tools -- fuzz-tests" +fuzz-tests = "run --package ra_tools --bin ra_tools -- fuzz-tests" render-test = "run --package ra_cli -- render-test" # Parse a file. This should be piped the file contents -- cgit v1.2.3