aboutsummaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2019-01-29 17:02:06 +0000
committerDJMcNab <[email protected]>2019-01-29 17:02:06 +0000
commitb42b7450a207d2387114d454fb18a4479300bbf2 (patch)
tree1543ce44f535b625e89af9604861c447f0b935ed /.cargo
parent48d2acb297459fb06cbb49bdce2eccb4c2591714 (diff)
Add `cargo jinstall-lsp` as a shorthand to include jemalloc support
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config2
1 files changed, 2 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config
index 3fba0f71d..b12f407e6 100644
--- a/.cargo/config
+++ b/.cargo/config
@@ -5,6 +5,8 @@ gen-syntax = "run --package tools --bin tools -- gen-syntax"
5gen-tests = "run --package tools --bin tools -- gen-tests" 5gen-tests = "run --package tools --bin tools -- gen-tests"
6# Installs ra_lsp_server 6# Installs ra_lsp_server
7install-lsp = "install --path crates/ra_lsp_server --force" 7install-lsp = "install --path crates/ra_lsp_server --force"
8# Installs ra_lsp_server with the jemalloc feature
9jinstall-lsp = "install --path crates/ra_lsp_server --force --features jemalloc"
8# Installs the visual studio code extension 10# Installs the visual studio code extension
9install-code = "run --package tools --bin tools -- install-code" 11install-code = "run --package tools --bin tools -- install-code"
10# 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.