aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* :arrow_up: update rustAleksey Kladov2019-01-191-1/+0
|
* :arrow_up: salsaAleksey Kladov2019-01-171-44/+55
|
* update salsaAleksey Kladov2019-01-151-37/+37
|
* Merge #546bors[bot]2019-01-151-8/+70
|\ | | | | | | | | | | | | | | 546: replace `assert_dbg_eq` with Insta r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * switch to insta for testingAleksey Kladov2019-01-151-8/+70
| |
* | update cargo_metadataAleksey Kladov2019-01-141-4/+4
|/
* switch to lsp-typesAleksey Kladov2019-01-141-18/+18
|
* rename TreePtr -> TreeArcAleksey Kladov2019-01-111-3/+3
| | | | This is much clearer about the semantics
* force serde in ra_syntaxAleksey Kladov2019-01-111-5/+4
|
* dont depend on tools from lsp-serverAleksey Kladov2019-01-101-1/+0
|
* switch CargoWorkspace to arenaAleksey Kladov2019-01-101-0/+1
|
* upgrade salsaAleksey Kladov2019-01-101-1/+1
|
* implement RefUnwindSafeAleksey Kladov2019-01-101-1/+1
|
* use unwinding for cancelationAleksey Kladov2019-01-101-19/+14
|
* unwind on cancelAleksey Kladov2019-01-091-5/+3
|
* nicer trailing comma handling in typesAleksey Kladov2019-01-091-4/+5
|
* Fix rev to deleted branchGeorg Semmler2019-01-091-3/+3
|
* fix usages after renameAleksey Kladov2019-01-081-22/+22
|
* fix usages after renameAleksey Kladov2019-01-081-24/+34
|
* upstream text-utils to text_unitAleksey Kladov2019-01-081-7/+7
|
* ra_db is independent from editorAleksey Kladov2019-01-081-1/+0
|
* ra_hir does not depend on ra_editorAleksey Kladov2019-01-081-1/+0
|
* dont depend on ra_editor directlyAleksey Kladov2019-01-081-1/+0
|
* switch to newer cargo-metadataAleksey Kladov2019-01-081-3/+3
|
* switch interner to use arenaAleksey Kladov2019-01-081-0/+1
|
* switched to published version of rowanAleksey Kladov2019-01-081-3/+3
|
* migrate ra_hir to rowan 2.0Aleksey Kladov2019-01-081-5/+5
|
* wrap TreePtrAleksey Kladov2019-01-081-9/+9
|
* update rowanAleksey Kladov2019-01-081-4/+4
|
* :arrow_up: rowanAleksey Kladov2019-01-041-27/+4
|
* :arrow_up: salsaAleksey Kladov2019-01-041-61/+73
|
* remove id arenaAleksey Kladov2019-01-041-7/+1
|
* extract area to a crateAleksey Kladov2019-01-041-0/+5
|
* construct index from symbols directlyAleksey Kladov2019-01-031-0/+10
|
* simplify runnablesAleksey Kladov2019-01-021-0/+1
|
* bump depsAleksey Kladov2019-01-011-24/+24
|
* :arrow_up: depsAleksey Kladov2018-12-311-44/+33
|
* Bump serde_json from 1.0.33 to 1.0.34dependabot[bot]2018-12-311-8/+8
| | | | | | | Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.33 to 1.0.34. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.33...v1.0.34) Signed-off-by: dependabot[bot] <[email protected]>
* Bump failure from 0.1.3 to 0.1.4dependabot[bot]2018-12-311-7/+7
| | | | | | | | Bumps [failure](https://github.com/rust-lang-nursery/failure) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/rust-lang-nursery/failure/releases) - [Changelog](https://github.com/rust-lang-nursery/failure/blob/master/RELEASES.md) - [Commits](https://github.com/rust-lang-nursery/failure/compare/0.1.3...0.1.4) Signed-off-by: dependabot[bot] <[email protected]>
* Bump failure_derive from 0.1.3 to 0.1.4dependabot[bot]2018-12-311-4/+4
| | | | | | | Bumps [failure_derive](https://github.com/withoutboats/failure_derive) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/withoutboats/failure_derive/releases) - [Commits](https://github.com/withoutboats/failure_derive/commits) Signed-off-by: dependabot[bot] <[email protected]>
* remove backtraces from CancelledAleksey Kladov2018-12-301-1/+0
| | | | | Hopefully we won't need them for debugging. If we do need them, it should be easy to add back.
* Merge #378bors[bot]2018-12-301-22/+1
|\ | | | | | | | | | | | | | | 378: migrate-to-tempdir r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * :arrow_up: tempdirAleksey Kladov2018-12-301-22/+1
| |
* | :arrow_up: crossbeamAleksey Kladov2018-12-301-36/+3
| | | | | | | | closes #189
* | migrate gen-lsp-server to new crossbeamAleksey Kladov2018-12-301-1/+13
|/
* Merge #358bors[bot]2018-12-301-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | 358: Add support for formatting entire document with rustfmt r=matklad a=aleksanb Attempting to format a document when rustfmt isn't installed will result in an error being returned to the frontend. An alternative implementation would be returning zero replacements. Part of https://github.com/rust-analyzer/rust-analyzer/issues/160. Co-authored-by: Aleksander Vognild Burkow <[email protected]>
| * Install rustfmt in rustfmt testAleksander Vognild Burkow2018-12-291-0/+1
| |
* | bump cargo.lockAleksey Kladov2018-12-301-5/+5
|/
* Implement type variablesFlorian Diebold2018-12-291-0/+10
| | | | | | | | | This will really become necessary when we implement generics, but even now, it allows us to reason 'backwards' to infer types of expressions that we didn't understand for some reason. We use ena, the union-find implementation extracted from rustc, to keep track of type variables.
* fix lockfileAleksey Kladov2018-12-281-7/+7
|