aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* Update crateskjeremy2021-01-041-16/+16
|
* Upgrade expect-test to 1.1Jesse Bakker2021-01-031-3/+3
|
* Merge #7106bors[bot]2020-12-311-0/+7
|\ | | | | | | | | | | | | | | 7106: Split textDocument/formatting TextEdit with diff r=matklad a=Jesse-Bakker #7044 Co-authored-by: Jesse Bakker <[email protected]>
| * Split textDocument/formatting TextEdit with diffJesse Bakker2020-12-311-0/+7
| |
* | Update crateskjeremy2020-12-301-20/+29
| |
* | Merge #7019bors[bot]2020-12-231-0/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | 7019: Try serde_path_to_error for LSP InitializeParams r=matklad a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]>
| * | Try serde_path_to_error for LSP InitializeParamsLaurențiu Nicola2020-12-231-0/+10
| |/
* | Merge #7016bors[bot]2020-12-231-14/+15
|\ \ | | | | | | | | | | | | | | | | | | | | | 7016: Bump deps r=flodiebold a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]>
| * | Bump depsLaurențiu Nicola2020-12-231-4/+4
| | |
| * | Bump chalkLaurențiu Nicola2020-12-231-8/+9
| | |
| * | Bump rustc_lexerLaurențiu Nicola2020-12-231-2/+2
| |/
* | Remove local ungrammar dependencyLukas Wirth2020-12-231-0/+2
| |
* | Update ungrammar for const block patternsLukas Wirth2020-12-231-3/+1
|/
* Update syn and quoteJeremy Kolb2020-12-201-4/+4
|
* cargo updateJeremy Kolb2020-12-191-10/+10
|
* LSP 3.16 - Releasedkjeremy2020-12-171-2/+2
|
* Node-ify lifetimesLukas Wirth2020-12-161-2/+2
|
* Unpatch ungrammarJonas Schievink2020-12-161-1/+3
|
* Basic support for decl macros 2.0Jonas Schievink2020-12-151-2/+0
|
* Move to upstream `macro_rules!` modelJonas Schievink2020-12-151-2/+2
|
* Merge #6817bors[bot]2020-12-141-39/+8
|\ | | | | | | | | | | | | | | 6817: Replace goblin crate with object r=matklad a=lnicola Continuation of #4385. Co-authored-by: Laurențiu Nicola <[email protected]>
| * Replace goblin crate with objectLaurențiu Nicola2020-12-131-39/+8
| |
* | cargo updatekjeremy2020-12-111-8/+8
|/
* Use itertoolsJonas Schievink2020-12-101-0/+1
|
* Make config.rs a single source of truth for configuration.Aleksey Kladov2020-12-081-0/+1
| | | | | | | | | | | | | | | | | Configuration is editor-independent. For this reason, we pick JSON-schema as the repr of the source of truth. We do specify it using rust-macros and some quick&dirty hackery though. The idea for syncing truth with package.json is to just do that manually, but there's a test to check that they are actually synced. There's CLI to print config's json schema: $ rust-analyzer --print-config-schema We go with a CLI rather than LSP request/response to make it easier to incorporate the thing into extension's static config. This is roughtly how we put the thing in package.json.
* Update expect-test and remove outdated licensekjeremy2020-12-071-4/+4
|
* cargo updatekjeremy2020-12-071-25/+15
|
* Retain types of proc macros and allow attr. macrosJonas Schievink2020-12-071-0/+1
|
* Upgrade ChalkFlorian Diebold2020-12-071-8/+8
| | | | | | | Also make overflow depth and max type size configurable through env variables. This can be helpful at least for debugging. Fixes #6628.
* cargo update: bump libloading to fix a double-freekjeremy2020-12-031-4/+4
|
* Bump mio for safety goodnesskjeremy2020-12-021-2/+2
|
* Fix OptionalVersionedTextDocumentIdentifier typekjeremy2020-12-011-2/+2
| | | | Fixes #6654
* bump lexerkjeremy2020-11-301-2/+2
|
* cargo updatekjeremy2020-11-301-20/+19
|
* Move the helpers into ide_dbKirill Bulatov2020-11-281-17/+1
|
* Extract the import code into the shared moduleKirill Bulatov2020-11-271-1/+17
|
* Profile completions betterKirill Bulatov2020-11-271-0/+1
|
* cargo updatekjeremy2020-11-241-15/+15
|
* New lsp-types to fix versioningkjeremy2020-11-241-2/+2
| | | | Fixes #6603
* cargo updatekjeremy2020-11-191-16/+16
|
*-. Merge #6577 #6579 #6581bors[bot]2020-11-171-10/+19
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6577: fix typos in syntax.md r=matklad a=jakobhellermann 6579: cargo update and add new license r=matklad a=kjeremy 6581: Use vscode-languageclient 7.0.0-next.14 r=matklad a=kjeremy Co-authored-by: Jakob Hellermann <[email protected]> Co-authored-by: kjeremy <[email protected]>
| | * cargo update and add new licensekjeremy2020-11-171-10/+19
| |/
* | Merge #6553bors[bot]2020-11-171-0/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6553: Auto imports in completion r=matklad a=SomeoneToIgnore ![completion](https://user-images.githubusercontent.com/2690773/99155339-ae4fb380-26bf-11eb-805a-655b1706ce70.gif) Closes https://github.com/rust-analyzer/rust-analyzer/issues/1062 but does not handle the completion order, since it's a separate task for https://github.com/rust-analyzer/rust-analyzer/issues/4922 , https://github.com/rust-analyzer/rust-analyzer/issues/4922 and maybe something else. 2 quirks in the current implementation: * traits are not auto imported during method completion If I understand the current situation right, we cannot search for traits by a **part** of a method name, we need a full name with correct case to get a trait for it. * VSCode (?) autocompletion is not as rigid as in Intellij Rust as you can notice on the animation. Intellij is able to refresh the completions on every new symbol added, yet VS Code does not query the completions on every symbol for me. With a few debug prints placed in RA, I've observed the following behaviour: after the first set of completion suggestions is received, next symbol input does not trigger a server request, if the completions contain this symbol. When more symbols added, the existing completion suggestions are filtered out until none are left and only then, on the next symbol it queries for completions. It seems like the only alternative to get an updated set of results is to manually retrigger it with Esc and Ctrl + Space. Despite the eerie latter bullet, the completion seems to work pretty fine and fast nontheless, but if you have any ideas on how to make it more smooth, I'll gladly try it out. Co-authored-by: Kirill Bulatov <[email protected]>
| * Omit modules during autocompletionKirill Bulatov2020-11-161-54/+105
| |
| * Add imports in auto completionKirill Bulatov2020-11-161-105/+55
| |
* | Latest LSP 3.16 protocolkjeremy2020-11-161-4/+4
|/ | | | Pulls in https://github.com/gluon-lang/lsp-types/pull/186
* add suggestion ..Default::default() for remaining struct fields in a ↵Benjamin Coenen2020-11-131-0/+1
| | | | | | constructor #6492 Signed-off-by: Benjamin Coenen <[email protected]>
* Update crateskjeremy2020-11-111-11/+22
|
* Do not use yanked once_cellkjeremy2020-11-111-2/+2
|
* Replace RacyFlag with OnceCellAleksey Kladov2020-11-111-2/+3
|