aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* SSR: A few small refactoringsDavid Lattimore2020-08-181-0/+1
|
* 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]>
| * Rename ra_project_model -> project_modelPavan Kumar Sunkara2020-08-131-20/+20
| |
* | Remove ra_fmt crateAleksey Kladov2020-08-131-10/+0
|/
* Rename ra_cfg -> cfgAleksey Kladov2020-08-131-15/+15
|
* Rename ra_mbe -> mbeAleksey Kladov2020-08-131-18/+18
|
* :arrow_up: cratesAleksey Kladov2020-08-131-36/+19
|
* MinorAleksey Kladov2020-08-131-18/+18
|
* Rename ra_proc_macro_srv -> proc_macro_srvPavan Kumar Sunkara2020-08-131-3/+3
|
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-121-34/+34
|
* Rename ra_parser -> parserAleksey Kladov2020-08-121-10/+10
|
* Rename ra_text_edit -> text_editAleksey Kladov2020-08-121-13/+13
|
* Cleanup TextEdit APIAleksey Kladov2020-08-121-1/+1
|
* Rename ra_toolchain -> toolchainAleksey Kladov2020-08-121-11/+11
|
* Rename ra_tt -> ttAleksey Kladov2020-08-121-16/+16
|
* Rename ra_prof -> profileAleksey Kladov2020-08-121-21/+21
|
* Rename ra_arenaAleksey Kladov2020-08-121-9/+9
|
* Fix build on musl and test it in CIJonas Schievink2020-08-121-2/+2
|
* cargo updatekjeremy2020-08-101-8/+8
|
* Update chalkJeremy Kolb2020-08-061-8/+8
|
* Use salsa's purge to account for all memoryAleksey Kladov2020-08-051-10/+10
|
* Update grammarAleksey Kladov2020-08-011-12/+12
|
* Better JSON serialization in metricsAleksey Kladov2020-08-011-0/+7
|
* Bump chalkLaurențiu Nicola2020-07-301-8/+8
|
* Bump perf-event and rustc_lexerLaurențiu Nicola2020-07-301-6/+6
|
* Report instructions in addition to timeAleksey Kladov2020-07-301-0/+20
| | | | They hopefully will be more stable on CI
* cargo_metadata 0.11.1 and cargo updatekjeremy2020-07-291-9/+8
|
* Replace rand with oorandomAleksey Kladov2020-07-291-79/+11
|
* Switch to ungrammar from ast_srcAleksey Kladov2020-07-291-0/+7
| | | | | | | | | | | | | | | | | | The primary advantage of ungrammar is that it (eventually) allows one to describe concrete syntax tree structure -- with alternatives and specific sequence of tokens & nodes. That should be re-usable for: * generate `make` calls * Rust reference * Hypothetical parser's evented API We loose doc comments for the time being unfortunately. I don't think we should add support for doc comments to ungrammar -- they'll make grammar file hard to read. We might supply docs as out-of band info, or maybe just via a reference, but we'll think about that once things are no longer in flux
* :arrow_up: depsAleksey Kladov2020-07-271-12/+12
|
* SSR: Use expect! in testsDavid Lattimore2020-07-241-0/+1
|
* Lighter weight tempdirAleksey Kladov2020-07-231-24/+0
|
* Update tracingkjeremy2020-07-231-2/+2
|
* Replace superslice with API on path to stabilizationAleksey Kladov2020-07-231-7/+1
|
* Use symbol tagskjeremy2020-07-221-2/+2
|
* Setup global allocator in the correct crateAleksey Kladov2020-07-221-1/+1
| | | | It worked before, but was roundabout
* Remove support for jemallocAleksey Kladov2020-07-221-65/+0
| | | | | We only used it for measuring memory usage, but now we can use glibc's allocator for that just fine
* Merge #5479bors[bot]2020-07-221-0/+2
|\ | | | | | | | | | | | | | | | | | | 5479: Allow gathering memory stats on non-jemalloc Linux r=matklad a=jonas-schievink I could also parse `/proc/$PID/statm` to get the resident set size, but decided against that for now as it isn't terribly useful. Note that `mallinfo()` is incredibly slow for some reason, and unfortunately this will be exposed to users via the "Memory Usage" command (even worse, the opened document will show the outdated values while the server is processing). So, not very ideal, but it keeps me from recompiling r-a with different feature sets all the time. Co-authored-by: Jonas Schievink <[email protected]>
| * Allow gathering memory stats on non-jemalloc LinuxJonas Schievink2020-07-211-0/+2
| |
* | bump crossbeam-channelkjeremy2020-07-211-3/+3
|/