aboutsummaryrefslogtreecommitdiff
path: root/crates/paths
Commit message (Collapse)AuthorAgeFilesLines
* Clearer namingAleksey Kladov2021-04-061-0/+7
|
* Document `paths` itemsArnaud2021-01-221-1/+50
|
* Add description for crates that will be publishedPavan Kumar Sunkara2020-08-241-0/+1
|
* Rename ra_ide -> ideAleksey Kladov2020-08-131-2/+2
|
* Add a license field to all the cratesYuki Okushi2020-07-141-0/+1
|
* Be more explicit about absolute paths at various placesAleksey Kladov2020-06-241-3/+23
|
* New VFSAleksey Kladov2020-06-231-4/+1
|
* Add paths::RelPath[Buf]Aleksey Kladov2020-06-221-0/+74
|
* Speedup VFS::partitionAleksey Kladov2020-06-191-1/+4
| | | | | | | | | | The task of `partition` function is to bin the flat list of paths into disjoint filesets. Ideally, it should be incremental -- each new file should be added to a specific fileset. However, preliminary measurnments show that it is actually fast enough if we just optimize this to use a binary search instead of a linear scan.
* Introduce paths crateAleksey Kladov2020-06-142-0/+131
It's a good idea to distinguish between absolute and relative paths at the type level, to avoid accidental dependency on the cwd, which really shouldn't matter for rust-analyzer service