Skip to content

Commit b2d43da

Browse files
committed
Allow rust-analyzer auto publishing
1 parent 81fa00c commit b2d43da

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

crates/rust-analyzer/Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "rust-analyzer"
33
version = "0.0.0"
4+
description = "TBD"
45
license = "MIT OR Apache-2.0"
56
authors = ["rust-analyzer developers"]
67
autobins = false
78
edition = "2018"
8-
publish = false
99

1010
[lib]
1111
doctest = false
@@ -33,26 +33,26 @@ rayon = "1.3.1"
3333
mimalloc = { version = "0.1.19", default-features = false, optional = true }
3434
lsp-server = "0.3.3"
3535

36-
stdx = { path = "../stdx" }
37-
flycheck = { path = "../flycheck" }
38-
ide = { path = "../ide" }
39-
profile = { path = "../profile" }
40-
project_model = { path = "../project_model" }
41-
syntax = { path = "../syntax" }
42-
text_edit = { path = "../text_edit" }
43-
vfs = { path = "../vfs" }
44-
vfs-notify = { path = "../vfs-notify" }
45-
cfg = { path = "../cfg" }
46-
toolchain = { path = "../toolchain" }
36+
stdx = { path = "../stdx", version = "0.0.0" }
37+
flycheck = { path = "../flycheck", version = "0.0.0" }
38+
ide = { path = "../ide", version = "0.0.0" }
39+
profile = { path = "../profile", version = "0.0.0" }
40+
project_model = { path = "../project_model", version = "0.0.0" }
41+
syntax = { path = "../syntax", version = "0.0.0" }
42+
text_edit = { path = "../text_edit", version = "0.0.0" }
43+
vfs = { path = "../vfs", version = "0.0.0" }
44+
vfs-notify = { path = "../vfs-notify", version = "0.0.0" }
45+
cfg = { path = "../cfg", version = "0.0.0" }
46+
toolchain = { path = "../toolchain", version = "0.0.0" }
4747

4848
# This should only be used in CLI
49-
base_db = { path = "../base_db" }
50-
ide_db = { path = "../ide_db" }
51-
ssr = { path = "../ssr" }
52-
hir = { path = "../hir" }
53-
hir_def = { path = "../hir_def" }
54-
hir_ty = { path = "../hir_ty" }
55-
proc_macro_srv = { path = "../proc_macro_srv" }
49+
base_db = { path = "../base_db", version = "0.0.0" }
50+
ide_db = { path = "../ide_db", version = "0.0.0" }
51+
ssr = { path = "../ssr", version = "0.0.0" }
52+
hir = { path = "../hir", version = "0.0.0" }
53+
hir_def = { path = "../hir_def", version = "0.0.0" }
54+
hir_ty = { path = "../hir_ty", version = "0.0.0" }
55+
proc_macro_srv = { path = "../proc_macro_srv", version = "0.0.0" }
5656

5757
[target.'cfg(windows)'.dependencies]
5858
winapi = "0.3.8"

0 commit comments

Comments
 (0)