diff options
Diffstat (limited to 'crates/ra_ide_api_light')
-rw-r--r-- | crates/ra_ide_api_light/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_ide_api_light/src/lib.rs | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_ide_api_light/Cargo.toml b/crates/ra_ide_api_light/Cargo.toml index a97d2308f..8c192fca6 100644 --- a/crates/ra_ide_api_light/Cargo.toml +++ b/crates/ra_ide_api_light/Cargo.toml | |||
@@ -1,6 +1,6 @@ | |||
1 | [package] | 1 | [package] |
2 | edition = "2018" | 2 | edition = "2018" |
3 | name = "ra_editor" | 3 | name = "ra_ide_api_light" |
4 | version = "0.1.0" | 4 | version = "0.1.0" |
5 | authors = ["Aleksey Kladov <[email protected]>"] | 5 | authors = ["Aleksey Kladov <[email protected]>"] |
6 | publish = false | 6 | publish = false |
diff --git a/crates/ra_ide_api_light/src/lib.rs b/crates/ra_ide_api_light/src/lib.rs index 5a6af19b7..40638eda8 100644 --- a/crates/ra_ide_api_light/src/lib.rs +++ b/crates/ra_ide_api_light/src/lib.rs | |||
@@ -1,3 +1,8 @@ | |||
1 | //! This crate provides thouse IDE features which use only a single file. | ||
2 | //! | ||
3 | //! This usually means functions which take sytnax tree as an input and produce | ||
4 | //! an edit or some auxilarly info. | ||
5 | |||
1 | pub mod assists; | 6 | pub mod assists; |
2 | mod extend_selection; | 7 | mod extend_selection; |
3 | mod folding_ranges; | 8 | mod folding_ranges; |