aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-05 23:09:28 +0100
committerGitHub <[email protected]>2020-10-05 23:09:28 +0100
commitcb78c40b0ed1e8cf609457d63c5137022d2e1907 (patch)
treeee970e807782d8a898d842bb7e20de3ec5b46cd2
parentdd6a352e64a2d52efd43feca4b2e80d124210a60 (diff)
parent33b51e70bb4803fe2e70a578e42d54901e4e2ab7 (diff)
Merge #6133
6133: Add some notes related to privacy and network access r=SomeoneToIgnore a=lnicola Closes #5551. Co-authored-by: LaurenČ›iu Nicola <[email protected]>
-rw-r--r--PRIVACY.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/PRIVACY.md b/PRIVACY.md
new file mode 100644
index 000000000..dd165c0e2
--- /dev/null
+++ b/PRIVACY.md
@@ -0,0 +1,17 @@
1# Privacy Notes
2
3## LSP server binary
4
5The 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.
6
7## Visual Studio Code extension
8
9The Code extension connects to GitHub to download updated LSP binaries and, if the nightly channel is selected, to perform update checks.
10
11## Other editor plugins
12
13Any 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.
14
15## Others
16
17If `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).