diff options
author | Kirill Bulatov <[email protected]> | 2020-11-24 21:25:13 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-11-27 16:28:41 +0000 |
commit | f4ae3650d855554575f866264a3c8197dfd12835 (patch) | |
tree | 5db591ff6ed18f196ddde87858d14e9b9ded6dc6 /crates/ide_helpers/Cargo.toml | |
parent | 0993f9067cfc14cded484906283d1df8e8741e8e (diff) |
Extract the import code into the shared module
Diffstat (limited to 'crates/ide_helpers/Cargo.toml')
-rw-r--r-- | crates/ide_helpers/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/ide_helpers/Cargo.toml b/crates/ide_helpers/Cargo.toml new file mode 100644 index 000000000..c5065b22b --- /dev/null +++ b/crates/ide_helpers/Cargo.toml | |||
@@ -0,0 +1,23 @@ | |||
1 | [package] | ||
2 | name = "ide_helpers" | ||
3 | version = "0.0.0" | ||
4 | description = "A set of helper methods shared between various ide-level modules" | ||
5 | license = "MIT OR Apache-2.0" | ||
6 | authors = ["rust-analyzer developers"] | ||
7 | edition = "2018" | ||
8 | |||
9 | [lib] | ||
10 | doctest = false | ||
11 | |||
12 | [features] | ||
13 | wasm = [] | ||
14 | |||
15 | [dependencies] | ||
16 | either = "1.6.1" | ||
17 | itertools = "0.9.0" | ||
18 | |||
19 | syntax = { path = "../syntax", version = "0.0.0" } | ||
20 | ide_db = { path = "../ide_db", version = "0.0.0" } | ||
21 | hir = { path = "../hir", version = "0.0.0" } | ||
22 | profile = { path = "../profile", version = "0.0.0" } | ||
23 | test_utils = { path = "../test_utils", version = "0.0.0" } | ||