aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_batch/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* add AstDatabaseAleksey Kladov2019-06-021-1/+6
|
* migrate to salsas interningAleksey Kladov2019-04-091-10/+2
|
* Make robust about target directorypcpthm2019-04-041-4/+1
|
* rename persistent hir database -> def databaseAleksey Kladov2019-03-231-5/+1
|
* Improve filtering of file rootsVille Penttinen2019-03-201-29/+7
| | | | | | | | | `ProjectWorkspace::to_roots` now returns a new `ProjectRoot` which contains information regarding whether or not the given path is part of the current workspace or an external dependency. This information can then be used in `ra_batch` and `ra_lsp_server` to implement more advanced filtering. This allows us to filter some unnecessary folders from external dependencies such as tests, examples and benches.
* Upgrade ra_vfs to use new FilteringVille Penttinen2019-03-181-2/+27
| | | | | Currently this matches the previous filtering, meaning all roots are filtered using the same rules.
* Rename and change `add_roots` to return a `Vec`.David Wood2019-03-071-1/+1
|
* Initial implementation of project-lock.json.David Wood2019-03-071-6/+1
| | | | | This commit adds a initial implementation of project-lock.json, a build system agnostic method of specifying the crate graph and roots.
* fix-testsAleksey Kladov2019-02-171-4/+4
|
* automatically wait for worker threadsAleksey Kladov2019-02-141-1/+0
| | | | closes #817
* Remove call to canonicalize in BatchDatabase::load_cargoVille Penttinen2019-02-141-1/+1
| | | | | | | | Instead of using canonicalize, we now join the given path to `std::env::current_dir()`, which either replaces the path, if the given path is absolute, or joins the paths. This fixes #821.
* Clean up a bitFlorian Diebold2019-02-101-2/+1
|
* Add a smoke test for ra_batchFlorian Diebold2019-02-101-0/+24
|
* Add an ra_cli command that analyses all crates in the current workspaceFlorian Diebold2019-02-101-2/+7
| | | | ... and prints various stats about how many expressions have a type etc.
* Implement BatchDatabase constructionFlorian Diebold2019-02-101-3/+96
|
* Add new crateFlorian Diebold2019-02-101-0/+30