diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 7e280b1f7..044686a99 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -1,11 +1,11 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "rust-analyzer" | 2 | name = "rust-analyzer" |
3 | version = "0.0.0" | 3 | version = "0.0.0" |
4 | description = "TBD" | ||
4 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
5 | authors = ["rust-analyzer developers"] | 6 | authors = ["rust-analyzer developers"] |
6 | autobins = false | 7 | autobins = false |
7 | edition = "2018" | 8 | edition = "2018" |
8 | publish = false | ||
9 | 9 | ||
10 | [lib] | 10 | [lib] |
11 | doctest = false | 11 | doctest = false |
@@ -33,26 +33,26 @@ rayon = "1.3.1" | |||
33 | mimalloc = { version = "0.1.19", default-features = false, optional = true } | 33 | mimalloc = { version = "0.1.19", default-features = false, optional = true } |
34 | lsp-server = "0.3.3" | 34 | lsp-server = "0.3.3" |
35 | 35 | ||
36 | stdx = { path = "../stdx" } | 36 | stdx = { path = "../stdx", version = "0.0.0" } |
37 | flycheck = { path = "../flycheck" } | 37 | flycheck = { path = "../flycheck", version = "0.0.0" } |
38 | ide = { path = "../ide" } | 38 | ide = { path = "../ide", version = "0.0.0" } |
39 | profile = { path = "../profile" } | 39 | profile = { path = "../profile", version = "0.0.0" } |
40 | project_model = { path = "../project_model" } | 40 | project_model = { path = "../project_model", version = "0.0.0" } |
41 | syntax = { path = "../syntax" } | 41 | syntax = { path = "../syntax", version = "0.0.0" } |
42 | text_edit = { path = "../text_edit" } | 42 | text_edit = { path = "../text_edit", version = "0.0.0" } |
43 | vfs = { path = "../vfs" } | 43 | vfs = { path = "../vfs", version = "0.0.0" } |
44 | vfs-notify = { path = "../vfs-notify" } | 44 | vfs-notify = { path = "../vfs-notify", version = "0.0.0" } |
45 | cfg = { path = "../cfg" } | 45 | cfg = { path = "../cfg", version = "0.0.0" } |
46 | toolchain = { path = "../toolchain" } | 46 | toolchain = { path = "../toolchain", version = "0.0.0" } |
47 | 47 | ||
48 | # This should only be used in CLI | 48 | # This should only be used in CLI |
49 | base_db = { path = "../base_db" } | 49 | base_db = { path = "../base_db", version = "0.0.0" } |
50 | ide_db = { path = "../ide_db" } | 50 | ide_db = { path = "../ide_db", version = "0.0.0" } |
51 | ssr = { path = "../ssr" } | 51 | ssr = { path = "../ssr", version = "0.0.0" } |
52 | hir = { path = "../hir" } | 52 | hir = { path = "../hir", version = "0.0.0" } |
53 | hir_def = { path = "../hir_def" } | 53 | hir_def = { path = "../hir_def", version = "0.0.0" } |
54 | hir_ty = { path = "../hir_ty" } | 54 | hir_ty = { path = "../hir_ty", version = "0.0.0" } |
55 | proc_macro_srv = { path = "../proc_macro_srv" } | 55 | proc_macro_srv = { path = "../proc_macro_srv", version = "0.0.0" } |
56 | 56 | ||
57 | [target.'cfg(windows)'.dependencies] | 57 | [target.'cfg(windows)'.dependencies] |
58 | winapi = "0.3.8" | 58 | winapi = "0.3.8" |