aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_tools/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix the formatting issuesKirill Bulatov2019-09-121-45/+45
|
* refactor(args): Apply commentsGeobert Quach2019-09-102-54/+37
|
* refactor(args): Switch to pico-args in ra_toolsGeobert Quach2019-09-102-35/+150
|
* make sure lockfile is used for cargo installAleksey Kladov2019-08-201-2/+2
|
* replace heck with just ascii transformationAleksey Kladov2019-08-191-6/+33
|
* remove ast::*Kind enumsAleksey Kladov2019-08-191-37/+50
| | | | With the new owned trees, we don't need an indirection here
* use derive(Debug) for SyntaxKindAleksey Kladov2019-08-191-29/+1
|
* plug new boilerplate_gen into ra_toolsAleksey Kladov2019-08-193-18/+24
|
* rename codegen -> boilerplate_genAleksey Kladov2019-08-192-3/+3
|
* drop tera dependencyAleksey Kladov2019-08-191-3/+25
|
* use quote! to generate syntax kindsAleksey Kladov2019-08-191-1/+146
|
* use new quote-generated astAleksey Kladov2019-08-181-1/+2
|
* use quote! macro to generate grammarAleksey Kladov2019-08-181-13/+152
| | | | | We already use syn&quote elsewhere (transitively), so it make sense to cut down on the number of technologies and get rid of tera
* deserialize grammarAleksey Kladov2019-08-181-3/+33
|
* switch to new codegenAleksey Kladov2019-08-182-14/+19
|
* codegen boilerplateAleksey Kladov2019-08-182-0/+8
|
* add quote depAleksey Kladov2019-08-182-0/+3
|
* install server firstAleksey Kladov2019-08-071-3/+3
| | | | closes #1658
* it's a good idea to build extension before installing itAleksey Kladov2019-07-271-1/+7
|
* Overhaul installation processAleksey Kladov2019-07-272-44/+114
| | | | | | | The new commands are $ cargo install-ra --client-code $ cargo install-ra --server --jemalloc
* move syntax tests to unit testsAleksey Kladov2019-07-241-2/+2
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-043-7/+7
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* Fall down of failuresMuhammad Mominul Huque2019-06-153-17/+15
|
* rename tools -> ra_toolsAleksey Kladov2019-06-103-0/+424
This should help with caching on CI I hope (see .travis.yml before_cache)