aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorPavan Kumar Sunkara <[email protected]>2020-08-24 16:27:13 +0100
committerPavan Kumar Sunkara <[email protected]>2020-08-24 16:27:17 +0100
commitb2d43daeb4c22a3792c948fb46c1e6fd4c1d3de2 (patch)
tree88b044971851b583b291f25c416ed3d078b4486c /crates
parent81fa00c5b5d5ffb559a39c7ff5190a2519a8ea61 (diff)
Allow rust-analyzer auto publishing
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/Cargo.toml38
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]
2name = "rust-analyzer" 2name = "rust-analyzer"
3version = "0.0.0" 3version = "0.0.0"
4description = "TBD"
4license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
5authors = ["rust-analyzer developers"] 6authors = ["rust-analyzer developers"]
6autobins = false 7autobins = false
7edition = "2018" 8edition = "2018"
8publish = false
9 9
10[lib] 10[lib]
11doctest = false 11doctest = false
@@ -33,26 +33,26 @@ rayon = "1.3.1"
33mimalloc = { version = "0.1.19", default-features = false, optional = true } 33mimalloc = { version = "0.1.19", default-features = false, optional = true }
34lsp-server = "0.3.3" 34lsp-server = "0.3.3"
35 35
36stdx = { path = "../stdx" } 36stdx = { path = "../stdx", version = "0.0.0" }
37flycheck = { path = "../flycheck" } 37flycheck = { path = "../flycheck", version = "0.0.0" }
38ide = { path = "../ide" } 38ide = { path = "../ide", version = "0.0.0" }
39profile = { path = "../profile" } 39profile = { path = "../profile", version = "0.0.0" }
40project_model = { path = "../project_model" } 40project_model = { path = "../project_model", version = "0.0.0" }
41syntax = { path = "../syntax" } 41syntax = { path = "../syntax", version = "0.0.0" }
42text_edit = { path = "../text_edit" } 42text_edit = { path = "../text_edit", version = "0.0.0" }
43vfs = { path = "../vfs" } 43vfs = { path = "../vfs", version = "0.0.0" }
44vfs-notify = { path = "../vfs-notify" } 44vfs-notify = { path = "../vfs-notify", version = "0.0.0" }
45cfg = { path = "../cfg" } 45cfg = { path = "../cfg", version = "0.0.0" }
46toolchain = { path = "../toolchain" } 46toolchain = { path = "../toolchain", version = "0.0.0" }
47 47
48# This should only be used in CLI 48# This should only be used in CLI
49base_db = { path = "../base_db" } 49base_db = { path = "../base_db", version = "0.0.0" }
50ide_db = { path = "../ide_db" } 50ide_db = { path = "../ide_db", version = "0.0.0" }
51ssr = { path = "../ssr" } 51ssr = { path = "../ssr", version = "0.0.0" }
52hir = { path = "../hir" } 52hir = { path = "../hir", version = "0.0.0" }
53hir_def = { path = "../hir_def" } 53hir_def = { path = "../hir_def", version = "0.0.0" }
54hir_ty = { path = "../hir_ty" } 54hir_ty = { path = "../hir_ty", version = "0.0.0" }
55proc_macro_srv = { path = "../proc_macro_srv" } 55proc_macro_srv = { path = "../proc_macro_srv", version = "0.0.0" }
56 56
57[target.'cfg(windows)'.dependencies] 57[target.'cfg(windows)'.dependencies]
58winapi = "0.3.8" 58winapi = "0.3.8"