mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
Add notes concerning privacy and network access
This commit is contained in:
parent
e5f252ade7
commit
33b51e70bb
1 changed files with 17 additions and 0 deletions
17
PRIVACY.md
Normal file
17
PRIVACY.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Privacy Notes
|
||||
|
||||
## LSP server binary
|
||||
|
||||
The LSP server performs no network access in itself, but runs `cargo metadata` which will update or download the crate registry and the source code of the project dependencies.
|
||||
|
||||
## Visual Studio Code extension
|
||||
|
||||
The Code extension connects to GitHub to download updated LSP binaries and, if the nightly channel is selected, to perform update checks.
|
||||
|
||||
## Other editor plugins
|
||||
|
||||
Any other editor plugins that integrate with `rust-analyzer` are not under the control of the `rust-analyzer` developers. For any privacy concerns, you should check with their respective developers.
|
||||
|
||||
## Others
|
||||
|
||||
If `cargo check` is enabled (the default), any build scripts or procedural macros used by the project or its dependencies will be executed. This is also the case when `cargo check` is disabled, but build script or procedural macro support is enabled in `rust-analyzer` (off by default).
|
Loading…
Reference in a new issue