Sign in
rust
/
rust
/
86193fa8a04bcbdeee9917c2a2d1e2ea7054c0a6
/
.
/
src
/
tools
/
rust-analyzer
/
editors
/
code
/
walkthrough-setup-tips.md
blob: fda4ac80023f057570f232b8eb95e6e1c7a1d217 [
file
] [
view
]
# Settings Example
Add
the following to settings
.
json to mark
Rust
library sources
as
read
-
only
:
```json
"files.readonlyInclude": {
"**/.cargo/registry/src/**/*.rs": true,
"**/lib/rustlib/src/rust/library/**/*.rs": true,
},
```