2017-08-28 15:33:55 +00:00
#+TITLE : Rust layer
2015-06-10 16:44:30 +00:00
2019-05-07 08:53:56 +00:00
#+TAGS : general|layer|multi-paradigm|programming
2019-05-05 17:26:40 +00:00
2015-06-10 16:44:30 +00:00
[[file:img/rust.png ]]
2019-05-07 20:05:06 +00:00
* Table of Contents :TOC_5_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description ][Description ]]
2017-08-28 21:58:10 +00:00
- [[#features ][Features: ]]
2017-05-22 14:16:12 +00:00
- [[#install ][Install ]]
- [[#layer ][Layer ]]
2019-09-30 04:49:44 +00:00
- [[#choosing-a-backend ][Choosing a backend ]]
2018-10-28 21:43:11 +00:00
- [[#racer ][Racer ]]
- [[#lsp ][LSP ]]
2020-02-22 10:39:46 +00:00
- [[#switch-to-another-lsp-server ][Switch to another LSP server ]]
2020-01-19 08:32:49 +00:00
- [[#autocompletion ][Autocompletion ]]
2019-04-18 16:32:10 +00:00
- [[#debugger-dap-integration ][Debugger (dap integration) ]]
2021-03-21 06:22:57 +00:00
- [[#automatically-reload-workspace ][Automatically Reload Workspace ]]
2017-05-22 14:16:12 +00:00
- [[#cargo ][Cargo ]]
2020-02-26 07:15:44 +00:00
- [[#cargo-edit ][cargo-edit ]]
- [[#cargo-audit ][cargo-audit ]]
2021-03-21 06:22:57 +00:00
- [[#cargo-outdated ][cargo-outdated ]]
2017-05-22 14:16:12 +00:00
- [[#rustfmt ][Rustfmt ]]
2020-02-26 07:15:44 +00:00
- [[#clippy ][Clippy ]]
2017-05-22 14:16:12 +00:00
- [[#key-bindings ][Key bindings ]]
2021-03-21 06:22:57 +00:00
- [[#debugger ][Debugger ]]
2015-06-10 16:44:30 +00:00
* Description
2019-01-13 18:09:06 +00:00
This layer supports [[https://www.rust-lang.org ][Rust ]] development in Spacemacs.
2015-06-10 16:44:30 +00:00
2017-08-28 21:58:10 +00:00
** Features:
2020-01-19 08:32:49 +00:00
- Auto-completion and navigation support through [[https://github.com/emacs-lsp/lsp-mode ][lsp-mode ]] or [[https://github.com/phildawes/racer ][Racer ]]
2019-09-30 01:30:53 +00:00
- Interactive debugger using [[https://github.com/emacs-lsp/dap-mode ][dap-mode ]]
2020-08-09 09:30:00 +00:00
- Support for the Rust package manager [[http://doc.crates.io/index.html ][Cargo ]]
- Support for [[https://github.com/nabero/ron-mode ][Rusty Object Notation (RON) ]]
2015-06-10 16:44:30 +00:00
* Install
** Layer
2016-01-06 05:21:55 +00:00
To use this configuration layer, add it to your =~/.spacemacs= . You will need to
add =rust= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
2019-09-30 04:49:44 +00:00
** Choosing a backend
To choose a default backend set the layer variable =rust-backend= :
#+BEGIN_SRC elisp
(rust :variables rust-backend 'racer)
#+END_SRC
Alternatively the =lsp= backend will be automatically chosen if the layer =lsp=
is used and you did not specify any value for =rust-backend= .
Backend can be chosen on a per project basis using directory local variables
(files named =.dir-locals.el= at the root of a project), an example to use the
=lsp= backend:
#+BEGIN_SRC elisp
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
((rust-mode (rust-backend . lsp)))
#+END_SRC
*Note:* you can easily add a directory local variable with ~SPC f v d~ .
2018-10-28 21:43:11 +00:00
*** Racer
You must install [[https://github.com/phildawes/racer ][Racer ]] to use this backend. Make sure the =racer= binary is available in
2016-01-10 12:36:56 +00:00
your =PATH= and to set the environment variable =RUST_SRC_PATH= , as described in
the [[https://github.com/phildawes/racer#installation ][installation instructions ]].
To enable auto-completion, ensure that the =auto-completion= layer is enabled.
2018-10-28 21:43:11 +00:00
*** LSP
2019-01-10 20:03:57 +00:00
You must add =lsp= to the existing =dotspacemacs-configuration-layers= in your =~/.spacemacs= .
2018-10-28 21:43:11 +00:00
2019-01-10 20:03:57 +00:00
Consult the installation command for the desired language server found at [[https://github.com/emacs-lsp/lsp-mode ][lsp-mode ]] for instructions.
2018-10-28 21:43:11 +00:00
2020-01-19 08:32:49 +00:00
The default LSP server for Rust is [[https://github.com/rust-lang/rls ][rls ]], i.e. rust language server.
To choose the experimental [[https://github.com/rust-analyzer/rust-analyzer ][rust-analyzer ]], you need to set the layer variable =lsp-rust-server= of =lsp= layer:
2020-01-27 22:19:54 +00:00
2020-01-19 08:32:49 +00:00
#+BEGIN_SRC elisp
2021-03-21 06:22:57 +00:00
(setq-default dotspacemacs-configuration-layers
'(lsp :variables lsp-rust-server 'rust-analyzer))
2020-01-31 14:23:53 +00:00
#+END_SRC
2020-01-19 08:32:49 +00:00
2020-02-10 21:48:43 +00:00
**** Switch to another LSP server
2021-03-15 19:17:03 +00:00
If both =rls= and =rust-analyzer= server are installed, you can press ~SPC m s s~ to switch to another LSP server backend.
2020-02-10 21:48:43 +00:00
2020-01-19 08:32:49 +00:00
**** Autocompletion
2018-10-28 21:43:11 +00:00
To enable auto-completion, ensure that the =auto-completion= layer is enabled.
2020-01-19 08:32:49 +00:00
By default, currently [[https://github.com/phildawes/racer ][Racer ]] is the only code completion backend of [[https://github.com/rust-lang/rls ][rls ]], so you also need to install it.
2019-04-18 16:32:10 +00:00
**** Debugger (dap integration)
To install the debug adapter you may run =M-x dap-gdb-lldb-setup= when you are on Linux or download it manually from [[https://marketplace.visualstudio.com/items?itemName=webfreak.debug ][Native Debug ]] and adjust =dap-gdb-lldb-path= .
2021-03-21 06:22:57 +00:00
**** Automatically Reload Workspace
When the LSP server is =rust-analyzer= , it may needs to reload the workspace to pickup changes made in =Cargo.toml= .
You can call =spacemacs/lsp-rust-analyzer-reload-workspace= , which would be faster than restarting the LSP backend.
You can also set =cargo-process-reload-on-modify= to =t= , then it will automatically reload the workspace after
one of the following is run:
- =cargo-process-add=
- =cargo-process-rm=
- =cargo-process-upgrade=
#+BEGIN_SRC elisp
(setq-default dotspacemacs-configuration-layers
'(lsp :variables lsp-rust-server 'rust-analyzer
cargo-process-reload-on-modify t))
#+END_SRC
2015-06-10 16:44:30 +00:00
** Cargo
2015-06-10 21:16:01 +00:00
[[http://doc.crates.io/index.html ][Cargo ]] is a project management command line tool for Rust. Installation
instructions can be found on the main page of [[http://doc.crates.io/index.html ][Cargo ]].
2015-06-10 16:44:30 +00:00
2020-02-26 07:15:44 +00:00
*** cargo-edit
2020-07-22 20:42:25 +00:00
[[https://github.com/killercup/cargo-edit ][cargo-edit ]] allows you to add, remove, and upgrade dependencies by modifying your =Cargo.toml= file.
2020-02-26 07:15:44 +00:00
2020-02-27 02:44:07 +00:00
#+BEGIN_SRC sh
cargo install cargo-edit
#+END_SRC
2020-02-26 07:15:44 +00:00
*** cargo-audit
[[https://github.com/RustSec/cargo-audit ][cargo-audit ]] audits =Cargo.lock= files for crates with security vulnerabilities.
2020-02-27 02:44:07 +00:00
#+BEGIN_SRC sh
cargo install cargo-audit
#+END_SRC
2021-03-21 06:22:57 +00:00
*** cargo-outdated
[[https://github.com/kbknapp/cargo-outdated ][cargo-outdated ]] displays dependencies that have new version available.
#+BEGIN_SRC sh
cargo install cargo-outdated
#+END_SRC
2016-01-11 14:43:22 +00:00
** Rustfmt
Format Rust code according to style guidelines using [[https://github.com/rust-lang-nursery/rustfmt ][rustfmt ]].
#+BEGIN_SRC sh
2020-02-27 02:44:07 +00:00
rustup component add rustfmt
2016-01-11 14:43:22 +00:00
#+END_SRC
2016-02-17 13:37:27 +00:00
To enable automatic buffer formatting on save, set the variable =rust-format-on-save= to =t= .
2016-01-11 14:43:22 +00:00
2020-02-26 07:15:44 +00:00
** Clippy
[[https://github.com/rust-lang/rust-clippy ][Clippy ]] provides a collection of lints to to catch common mistakes and improve your code.
2020-02-27 02:44:07 +00:00
#+BEGIN_SRC sh
rustup component add clippy
#+END_SRC
2015-06-10 16:44:30 +00:00
* Key bindings
2020-02-26 16:43:02 +00:00
| Key binding | Description |
|-------------+-------------------------------------------------------------|
| ~SPC m = =~ | reformat the buffer |
2021-03-19 18:47:55 +00:00
| ~SPC m b R~ | reload Rust-Analyzer workspace |
2020-02-26 16:43:02 +00:00
| ~SPC m c .~ | repeat the last Cargo command |
2021-03-21 06:22:57 +00:00
| ~SPC m c /~ | search for packages on crates.io with Cargo |
| ~SPC m c =~ | format all project files with rustfmt |
2020-02-26 16:43:02 +00:00
| ~SPC m c a~ | add a new dependency with cargo-edit |
| ~SPC m c A~ | audit dependencies for known vulnerability with cargo-audit |
| ~SPC m c c~ | compile project |
2021-03-21 06:22:57 +00:00
| ~SPC m c C~ | remove build artifacts |
2020-02-26 16:43:02 +00:00
| ~SPC m c d~ | generate documentation |
2021-03-21 06:22:57 +00:00
| ~SPC m c D~ | generate documentation and open it in default browser |
2020-02-26 16:43:02 +00:00
| ~SPC m c e~ | run benchmarks |
2021-03-21 06:22:57 +00:00
| ~SPC m c E~ | run a project example |
2020-02-26 16:43:02 +00:00
| ~SPC m c i~ | initialise a new project with Cargo (init) |
| ~SPC m c l~ | run linter ([[https://github.com/arcnmx/cargo-clippy][cargo-clippy]]) |
| ~SPC m c n~ | create a new project with Cargo (new) |
2021-03-21 06:22:57 +00:00
| ~SPC m c o~ | display outdated dependencies ([[https://github.com/kbknapp/cargo-outdated][cargo-outdated]]) |
2020-02-26 16:43:02 +00:00
| ~SPC m c r~ | remove a dependency with cargo-edit |
| ~SPC m c u~ | update dependencies with Cargo |
| ~SPC m c U~ | upgrade dependencies to LATEST version with cargo-edit |
| ~SPC m c v~ | check (verify) a project with Cargo |
| ~SPC m c x~ | execute the default binary |
2021-03-21 06:22:57 +00:00
| ~SPC m c X~ | execute a specific binary |
2020-02-26 16:43:02 +00:00
| ~SPC m g g~ | jump to definition |
| ~SPC m h h~ | describe symbol at point |
| ~SPC m s s~ | switch to other LSP server backend |
2021-03-21 06:22:57 +00:00
| ~SPC m t a~ | test current project |
| ~SPC m t t~ | run the current test |
| ~SPC m t b~ | run all tests in current buffe |
2019-04-18 16:32:10 +00:00
2021-03-21 06:22:57 +00:00
** Debugger
2019-09-30 01:30:53 +00:00
Using the =dap= layer you'll get access to all the DAP key bindings, see the
complete list of key bindings on the [[https://github.com/syl20bnr/spacemacs/tree/develop/layers/%2Btools/dap#key-bindings ][dap layer description ]].