diff options
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 11 | ||||
-rw-r--r-- | Cargo.lock | 12 |
2 files changed, 16 insertions, 7 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 27b74db9f..dddc82f80 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md | |||
@@ -11,5 +11,14 @@ assignees: '' | |||
11 | Troubleshooting guide: https://rust-analyzer.github.io/manual.html#troubleshooting | 11 | Troubleshooting guide: https://rust-analyzer.github.io/manual.html#troubleshooting |
12 | Forum for questions: https://users.rust-lang.org/c/ide/14 | 12 | Forum for questions: https://users.rust-lang.org/c/ide/14 |
13 | 13 | ||
14 | Please try to provide information which will help us to fix the issue faster. Minimal reproducible examples with few dependencies are especially lovely <3 | 14 | Before submitting, please make sure that you're not running into one of these known issues: |
15 | |||
16 | 1. local imports (`use` statements) don't work: #1165 | ||
17 | 2. local items don't work: #1559 | ||
18 | 3. on-the-fly diagnostics are mostly unimplemented (`cargo check` diagnostics will be shown when saving a file) | ||
19 | 4. some settings are required for procedural macro and build script support (`rust-analyzer.cargo.loadOutDirsFromCheck`, `rust-analyzer.procMacro.enable`): #6448 | ||
20 | 5. some platform-specific imports are not resolved: #6038 | ||
21 | 6. the official `rust-lang.rust` VS Code extension conflicts with `rust-analyzer`: #6463 | ||
22 | |||
23 | Otherwise please try to provide information which will help us to fix the issue faster. Minimal reproducible examples with few dependencies are especially lovely <3. | ||
15 | --> | 24 | --> |
diff --git a/Cargo.lock b/Cargo.lock index f6b53d188..1a4a63550 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -26,9 +26,9 @@ dependencies = [ | |||
26 | 26 | ||
27 | [[package]] | 27 | [[package]] |
28 | name = "anyhow" | 28 | name = "anyhow" |
29 | version = "1.0.33" | 29 | version = "1.0.34" |
30 | source = "registry+https://github.com/rust-lang/crates.io-index" | 30 | source = "registry+https://github.com/rust-lang/crates.io-index" |
31 | checksum = "a1fd36ffbb1fb7c834eac128ea8d0e310c5aeb635548f9d58861e1308d46e71c" | 31 | checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7" |
32 | 32 | ||
33 | [[package]] | 33 | [[package]] |
34 | name = "anymap" | 34 | name = "anymap" |
@@ -269,9 +269,9 @@ dependencies = [ | |||
269 | 269 | ||
270 | [[package]] | 270 | [[package]] |
271 | name = "const_fn" | 271 | name = "const_fn" |
272 | version = "0.4.2" | 272 | version = "0.4.3" |
273 | source = "registry+https://github.com/rust-lang/crates.io-index" | 273 | source = "registry+https://github.com/rust-lang/crates.io-index" |
274 | checksum = "ce90df4c658c62f12d78f7508cf92f9173e5184a539c10bfe54a3107b3ffd0f2" | 274 | checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab" |
275 | 275 | ||
276 | [[package]] | 276 | [[package]] |
277 | name = "crc32fast" | 277 | name = "crc32fast" |
@@ -1793,9 +1793,9 @@ dependencies = [ | |||
1793 | 1793 | ||
1794 | [[package]] | 1794 | [[package]] |
1795 | name = "tracing-subscriber" | 1795 | name = "tracing-subscriber" |
1796 | version = "0.2.14" | 1796 | version = "0.2.15" |
1797 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1797 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1798 | checksum = "2810660b9d5b18895d140caba6401765749a6a162e5d0736cfc44ea50db9d79d" | 1798 | checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401" |
1799 | dependencies = [ | 1799 | dependencies = [ |
1800 | "ansi_term", | 1800 | "ansi_term", |
1801 | "chrono", | 1801 | "chrono", |