aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_db/src/input.rs
Commit message (Collapse)AuthorAgeFilesLines
* :arrow_up salsaAleksey Kladov2019-01-251-42/+0
|
* Change ids strategyAleksey Kladov2019-01-241-0/+12
| | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids
* :arrow_up: salsaAleksey Kladov2019-01-171-40/+25
|
* gracefully handle cycles in crate graphAleksey Kladov2019-01-131-34/+48
| | | | | rust-lang/rust has absolutely weird setup with rustc-workspace-shim, which leads to real cycles.
* Fix typos in ARCHITECTURE.md and a number of cratesMarcus Klaas de Vries2019-01-091-11/+11
| | | | specifically: gen_lsp_server, ra_arena, ra_cli, ra_db, ra_hir
* Merge #310bors[bot]2018-12-221-5/+54
|\ | | | | | | | | | | | | | | 310: When constructing a crate graph, detect and forbid cycles. r=matklad a=gfreezy fixed #300 Co-authored-by: gfreezy <[email protected]>
| * mark as visited on entry instead of leftgfreezy2018-12-221-2/+2
| |
| * not visit the same crateId only oncegfreezy2018-12-221-14/+16
| |
| * add #[cfg(test)]gfreezy2018-12-211-1/+2
| |
| * rename to dfs_findgfreezy2018-12-211-3/+3
| |
| * When constructing a crate graph, detect and forbid cycles.gfreezy2018-12-211-6/+52
| | | | | | | | fixed #300
* | hide empty changesAleksey Kladov2018-12-211-0/+3
|/
* extend commentAleksey Kladov2018-12-201-1/+5
|
* docs for input queriesAleksey Kladov2018-12-201-11/+45
|
* index all local cratesAleksey Kladov2018-12-201-4/+6
|
* switch analysis to vfsAleksey Kladov2018-12-201-15/+7
|
* make it compileAleksey Kladov2018-12-201-1/+1
|
* remove relpath from inputAleksey Kladov2018-12-201-3/+0
|
* use relpaths for module resolveAleksey Kladov2018-12-201-0/+14
|
* return dependencies with namesAleksey Kladov2018-12-091-2/+2
|
* thread info about dep namesAleksey Kladov2018-12-091-6/+7
|
* more crate boilerplateAleksey Kladov2018-12-091-4/+16
|
* propagate deps to CrateGraphAleksey Kladov2018-12-091-0/+3
|
* First step towards crate depsAleksey Kladov2018-12-051-8/+35
|
* make stuff privateAleksey Kladov2018-12-051-1/+1
|
* move db basics to ra_dbAleksey Kladov2018-11-281-0/+73
This should allow to move hir to a separate crate