aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md11
-rw-r--r--Cargo.lock12
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: ''
11Troubleshooting guide: https://rust-analyzer.github.io/manual.html#troubleshooting 11Troubleshooting guide: https://rust-analyzer.github.io/manual.html#troubleshooting
12Forum for questions: https://users.rust-lang.org/c/ide/14 12Forum for questions: https://users.rust-lang.org/c/ide/14
13 13
14Please try to provide information which will help us to fix the issue faster. Minimal reproducible examples with few dependencies are especially lovely <3 14Before 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
23Otherwise 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]]
28name = "anyhow" 28name = "anyhow"
29version = "1.0.33" 29version = "1.0.34"
30source = "registry+https://github.com/rust-lang/crates.io-index" 30source = "registry+https://github.com/rust-lang/crates.io-index"
31checksum = "a1fd36ffbb1fb7c834eac128ea8d0e310c5aeb635548f9d58861e1308d46e71c" 31checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
32 32
33[[package]] 33[[package]]
34name = "anymap" 34name = "anymap"
@@ -269,9 +269,9 @@ dependencies = [
269 269
270[[package]] 270[[package]]
271name = "const_fn" 271name = "const_fn"
272version = "0.4.2" 272version = "0.4.3"
273source = "registry+https://github.com/rust-lang/crates.io-index" 273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "ce90df4c658c62f12d78f7508cf92f9173e5184a539c10bfe54a3107b3ffd0f2" 274checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
275 275
276[[package]] 276[[package]]
277name = "crc32fast" 277name = "crc32fast"
@@ -1793,9 +1793,9 @@ dependencies = [
1793 1793
1794[[package]] 1794[[package]]
1795name = "tracing-subscriber" 1795name = "tracing-subscriber"
1796version = "0.2.14" 1796version = "0.2.15"
1797source = "registry+https://github.com/rust-lang/crates.io-index" 1797source = "registry+https://github.com/rust-lang/crates.io-index"
1798checksum = "2810660b9d5b18895d140caba6401765749a6a162e5d0736cfc44ea50db9d79d" 1798checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
1799dependencies = [ 1799dependencies = [
1800 "ansi_term", 1800 "ansi_term",
1801 "chrono", 1801 "chrono",