aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* Up rustc-ap-rustc_lexer to 681kjeremy2020-10-011-14/+14
| | | | cargo update as well
* cargo updatekjeremy2020-09-301-12/+19
|
* Update chalk to 0.30.0Nathan Whitaker2020-09-281-8/+8
|
* chalk 0.29.0Jeremy Kolb2020-09-281-8/+8
|
* Update depsJeremy Kolb2020-09-271-20/+25
|
* Update chalk to 0.28.0Bram van den Heuvel2020-09-251-8/+8
|
* Bump smol_str from 0.1.16 to 0.1.17Jean SIMARD2020-09-241-2/+2
|
* lsp-types 0.82kjeremy2020-09-231-2/+2
|
* Support active parameters at the per-signature levelkjeremy2020-09-181-10/+10
| | | | Update crates
* Update chalk to 0.27 and adapt to chalk changes.Charles Lew2020-09-151-8/+8
|
* Update crateskjeremy2020-09-141-6/+7
|
* Update serdekjeremy2020-09-111-4/+4
|
* cargo updatekjeremy2020-09-111-6/+6
|
* Update crateskjeremy2020-09-081-16/+13
| | | | Gets passed pulled crossbeam crate
* Up proc-macro2 to 1.20kjeremy2020-09-031-2/+2
| | | | This changes the way Display is implemented
* Chalk 0.25kjeremy2020-09-021-8/+8
| | | | Picks up flodiebold's infinite loop fix
* Merge #5930bors[bot]2020-09-021-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | 5930: Migrate to the latest Semantic Tokens Proposal for LSP 3.16 r=matklad a=kjeremy This stabilizes call hierarchy and semantic tokens features on the client side and changes the server-side semantic tokens protocol to match the latest proposal for 3.16. The server-side change will break clients depending on the earlier semantic tokens draft. Fixes #4942 Co-authored-by: kjeremy <[email protected]>
| * Move to vscode-languageclient 7.0.0-next.9kjeremy2020-09-021-2/+2
| | | | | | | | Stabilizes call hierarchy and semantic tokens features.
* | cargo updatekjeremy2020-09-021-4/+4
|/
* Replace custom `not_bash::fs2` setup with fs_err crateVeetaha2020-08-291-0/+7
|
* :arrow_up: expect-testAleksey Kladov2020-08-281-2/+2
|
* :arrow_up: cratesAleksey Kladov2020-08-271-30/+27
|
* Tease apart orthogonal concerns in markdown link rewritingAleksey Kladov2020-08-261-1/+1
| | | | | | | | | | | | `hir` should know nothing about URLs, markdown and html. It should only be able to: * resolve stringy path from documentation * generate canonical stringy path for a def In contrast, link rewriting should not care about semantics of paths and names resolution, and should be concern only with text mangling bits.
* Merge remote-tracking branch 'upstream/master' into 503-hover-doc-linksZac Pullar-Strecker2020-08-251-2/+2
|\
| * Support extern typesJonas Schievink2020-08-241-2/+2
| |
* | Merge remote-tracking branch 'upstream/master' into 503-hover-doc-linksZac Pullar-Strecker2020-08-241-417/+410
|\|
| * :arrow_up: autocfgAleksey Kladov2020-08-211-2/+2
| |
| * :arrow_up: ungrammarAleksey Kladov2020-08-211-2/+2
| |
| * Merge #5835bors[bot]2020-08-211-9/+10
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 5835: Switch to expect_test from crates.io r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| | * Switch to expect_test from crates.ioAleksey Kladov2020-08-211-9/+10
| | |
| * | Update crateskjeremy2020-08-201-10/+10
| |/
| * :arrow_up: cratesAleksey Kladov2020-08-181-6/+6
| |
| * Merge #5758bors[bot]2020-08-181-0/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 5758: SSR: Explicitly autoderef and ref placeholders as needed r=matklad a=davidlattimore Structural search replace now inserts *, & and &mut in the replacement to match any auto[de]ref in the matched code. e.g. `$a.foo() ==>> bar($a)` might convert `x.foo()` to `bar(&mut x)` Co-authored-by: David Lattimore <[email protected]>
| | * SSR: A few small refactoringsDavid Lattimore2020-08-181-0/+1
| | |
| * | :arrow_up: cratesAleksey Kladov2020-08-181-8/+8
| | |
| * | Chalk 0.23Jeremy Kolb2020-08-161-8/+8
| | |
| * | Bump rustc_lexerJeremy Kolb2020-08-161-2/+2
| | |
| * | Update chronoJeremy Kolb2020-08-161-2/+2
| | |
| * | Add a proc_macro_test crateJonas Schievink2020-08-141-0/+5
| |/ | | | | | | This exports all 3 kinds of proc macros and is useful for testing
| * Rename ra_ide -> ideAleksey Kladov2020-08-131-35/+35
| |
| * Rename ra_assists -> assistsAleksey Kladov2020-08-131-18/+18
| |
| * Rename ra_ssr -> ssrAleksey Kladov2020-08-131-16/+16
| |
| * Rename ra_ide_db -> ide_dbAleksey Kladov2020-08-131-23/+23
| |
| * Rename ra_hir -> hirAleksey Kladov2020-08-131-23/+23
| |
| * Rename ra_hir_ty -> hir_tyAleksey Kladov2020-08-131-30/+30
| |
| * Rename ra_hir_def -> hir_defAleksey Kladov2020-08-131-30/+30
| |
| * Rename ra_hir_expand -> hir_expandAleksey Kladov2020-08-131-20/+20
| |
| * Rename ra_db -> base_dbAleksey Kladov2020-08-131-25/+25
| |
| * Rename ra_proc_macro -> proc_macro_apiAleksey Kladov2020-08-131-14/+14
| |
| * Merge #5744bors[bot]2020-08-131-20/+20
| |\ | | | | | | | | | | | | | | | | | | | | | 5744: Rename ra_project_model -> project_model r=matklad a=pksunkara Co-authored-by: Pavan Kumar Sunkara <[email protected]>