]> git.lizzy.rs Git - rust.git/commitdiff
Allow rust-analyzer auto publishing
authorPavan Kumar Sunkara <pavan.sss1991@gmail.com>
Mon, 24 Aug 2020 15:27:13 +0000 (17:27 +0200)
committerPavan Kumar Sunkara <pavan.sss1991@gmail.com>
Mon, 24 Aug 2020 15:27:17 +0000 (17:27 +0200)
crates/rust-analyzer/Cargo.toml

index 7e280b1f77109ffbb53e63d9b18d797a89f0c68d..044686a99fa7c011eb42312470bc7e32b65722cb 100644 (file)
@@ -1,11 +1,11 @@
 [package]
 name = "rust-analyzer"
 version = "0.0.0"
+description = "TBD"
 license = "MIT OR Apache-2.0"
 authors = ["rust-analyzer developers"]
 autobins = false
 edition = "2018"
-publish = false
 
 [lib]
 doctest = false
@@ -33,26 +33,26 @@ rayon = "1.3.1"
 mimalloc = { version = "0.1.19", default-features = false, optional = true }
 lsp-server = "0.3.3"
 
-stdx = { path = "../stdx" }
-flycheck = { path = "../flycheck" }
-ide = { path = "../ide" }
-profile = { path = "../profile" }
-project_model = { path = "../project_model" }
-syntax = { path = "../syntax" }
-text_edit = { path = "../text_edit" }
-vfs = { path = "../vfs" }
-vfs-notify = { path = "../vfs-notify" }
-cfg = { path = "../cfg" }
-toolchain = { path = "../toolchain" }
+stdx = { path = "../stdx", version = "0.0.0" }
+flycheck = { path = "../flycheck", version = "0.0.0" }
+ide = { path = "../ide", version = "0.0.0" }
+profile = { path = "../profile", version = "0.0.0" }
+project_model = { path = "../project_model", version = "0.0.0" }
+syntax = { path = "../syntax", version = "0.0.0" }
+text_edit = { path = "../text_edit", version = "0.0.0" }
+vfs = { path = "../vfs", version = "0.0.0" }
+vfs-notify = { path = "../vfs-notify", version = "0.0.0" }
+cfg = { path = "../cfg", version = "0.0.0" }
+toolchain = { path = "../toolchain", version = "0.0.0" }
 
 # This should only be used in CLI
-base_db = { path = "../base_db" }
-ide_db = { path = "../ide_db" }
-ssr = { path = "../ssr" }
-hir = { path = "../hir" }
-hir_def = { path = "../hir_def" }
-hir_ty = { path = "../hir_ty" }
-proc_macro_srv = { path = "../proc_macro_srv" }
+base_db = { path = "../base_db", version = "0.0.0" }
+ide_db = { path = "../ide_db", version = "0.0.0" }
+ssr = { path = "../ssr", version = "0.0.0" }
+hir = { path = "../hir", version = "0.0.0" }
+hir_def = { path = "../hir_def", version = "0.0.0" }
+hir_ty = { path = "../hir_ty", version = "0.0.0" }
+proc_macro_srv = { path = "../proc_macro_srv", version = "0.0.0" }
 
 [target.'cfg(windows)'.dependencies]
 winapi = "0.3.8"