mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
Add version to deps in cargo.toml
This commit is contained in:
parent
e65d48d1fb
commit
a8fa5cd42e
22 changed files with 99 additions and 98 deletions
|
@ -13,11 +13,11 @@ rustc-hash = "1.1.0"
|
||||||
itertools = "0.9.0"
|
itertools = "0.9.0"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
text_edit = { path = "../text_edit" }
|
text_edit = { path = "../text_edit", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
ide_db = { path = "../ide_db" }
|
ide_db = { path = "../ide_db", version = "0.0.0" }
|
||||||
hir = { path = "../hir" }
|
hir = { path = "../hir", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
|
|
|
@ -12,10 +12,10 @@ doctest = false
|
||||||
salsa = "0.15.2"
|
salsa = "0.15.2"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
|
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
cfg = { path = "../cfg" }
|
cfg = { path = "../cfg", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
vfs = { path = "../vfs" }
|
vfs = { path = "../vfs", version = "0.0.0" }
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
|
|
|
@ -11,7 +11,7 @@ doctest = false
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
|
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
mbe = { path = "../mbe" }
|
mbe = { path = "../mbe" }
|
||||||
|
|
|
@ -15,4 +15,4 @@ cargo_metadata = "0.11.1"
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
jod-thread = "0.1.1"
|
jod-thread = "0.1.1"
|
||||||
|
|
||||||
toolchain = { path = "../toolchain" }
|
toolchain = { path = "../toolchain", version = "0.0.0" }
|
||||||
|
|
|
@ -15,10 +15,10 @@ either = "1.5.3"
|
||||||
arrayvec = "0.5.1"
|
arrayvec = "0.5.1"
|
||||||
itertools = "0.9.0"
|
itertools = "0.9.0"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
hir_expand = { path = "../hir_expand" }
|
hir_expand = { path = "../hir_expand", version = "0.0.0" }
|
||||||
hir_def = { path = "../hir_def" }
|
hir_def = { path = "../hir_def", version = "0.0.0" }
|
||||||
hir_ty = { path = "../hir_ty" }
|
hir_ty = { path = "../hir_ty", version = "0.0.0" }
|
||||||
|
|
|
@ -20,16 +20,16 @@ itertools = "0.9.0"
|
||||||
indexmap = "1.4.0"
|
indexmap = "1.4.0"
|
||||||
smallvec = "1.4.0"
|
smallvec = "1.4.0"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
arena = { path = "../arena" }
|
arena = { path = "../arena", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
hir_expand = { path = "../hir_expand" }
|
hir_expand = { path = "../hir_expand", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
mbe = { path = "../mbe" }
|
mbe = { path = "../mbe", version = "0.0.0" }
|
||||||
cfg = { path = "../cfg" }
|
cfg = { path = "../cfg", version = "0.0.0" }
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
expect-test = "0.1"
|
expect-test = "0.1"
|
||||||
|
|
|
@ -13,11 +13,11 @@ log = "0.4.8"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
rustc-hash = "1.0.0"
|
rustc-hash = "1.0.0"
|
||||||
|
|
||||||
arena = { path = "../arena" }
|
arena = { path = "../arena", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
parser = { path = "../parser" }
|
parser = { path = "../parser", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
mbe = { path = "../mbe" }
|
mbe = { path = "../mbe", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils"}
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
|
|
|
@ -20,14 +20,14 @@ chalk-solve = { version = "0.23.0" }
|
||||||
chalk-ir = { version = "0.23.0" }
|
chalk-ir = { version = "0.23.0" }
|
||||||
chalk-recursive = { version = "0.23.0" }
|
chalk-recursive = { version = "0.23.0" }
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
hir_def = { path = "../hir_def" }
|
hir_def = { path = "../hir_def", version = "0.0.0" }
|
||||||
hir_expand = { path = "../hir_expand" }
|
hir_expand = { path = "../hir_expand", version = "0.0.0" }
|
||||||
arena = { path = "../arena" }
|
arena = { path = "../arena", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
expect-test = "0.1"
|
expect-test = "0.1"
|
||||||
|
|
|
@ -16,20 +16,20 @@ log = "0.4.8"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
oorandom = "11.1.2"
|
oorandom = "11.1.2"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
text_edit = { path = "../text_edit" }
|
text_edit = { path = "../text_edit", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
ide_db = { path = "../ide_db" }
|
ide_db = { path = "../ide_db", version = "0.0.0" }
|
||||||
cfg = { path = "../cfg" }
|
cfg = { path = "../cfg", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
assists = { path = "../assists" }
|
assists = { path = "../assists", version = "0.0.0" }
|
||||||
ssr = { path = "../ssr" }
|
ssr = { path = "../ssr", version = "0.0.0" }
|
||||||
|
|
||||||
# ide should depend only on the top-level `hir` package. if you need
|
# ide should depend only on the top-level `hir` package. if you need
|
||||||
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
||||||
hir = { path = "../hir" }
|
hir = { path = "../hir", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
expect-test = "0.1"
|
expect-test = "0.1"
|
||||||
|
|
|
@ -19,12 +19,12 @@ rustc-hash = "1.1.0"
|
||||||
once_cell = "1.3.1"
|
once_cell = "1.3.1"
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
text_edit = { path = "../text_edit" }
|
text_edit = { path = "../text_edit", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
profile = { path = "../profile" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
# ide should depend only on the top-level `hir` package. if you need
|
# ide should depend only on the top-level `hir` package. if you need
|
||||||
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
|
||||||
hir = { path = "../hir" }
|
hir = { path = "../hir", version = "0.0.0" }
|
||||||
|
|
|
@ -13,9 +13,9 @@ rustc-hash = "1.1.0"
|
||||||
smallvec = "1.2.0"
|
smallvec = "1.2.0"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
|
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
parser = { path = "../parser" }
|
parser = { path = "../parser", version = "0.0.0" }
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils" }
|
||||||
|
|
|
@ -15,4 +15,4 @@ log = "0.4.8"
|
||||||
crossbeam-channel = "0.4.0"
|
crossbeam-channel = "0.4.0"
|
||||||
jod-thread = "0.1.1"
|
jod-thread = "0.1.1"
|
||||||
|
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
|
|
|
@ -13,10 +13,10 @@ goblin = "0.2.1"
|
||||||
libloading = "0.6.0"
|
libloading = "0.6.0"
|
||||||
memmap = "0.7"
|
memmap = "0.7"
|
||||||
|
|
||||||
tt = { path = "../tt" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
mbe = { path = "../mbe" }
|
mbe = { path = "../mbe", version = "0.0.0" }
|
||||||
proc_macro_api = { path = "../proc_macro_api" }
|
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cargo_metadata = "0.11.1"
|
cargo_metadata = "0.11.1"
|
||||||
|
|
|
@ -14,7 +14,7 @@ cfg-if = "0.1.10"
|
||||||
libc = "0.2.73"
|
libc = "0.2.73"
|
||||||
backtrace = { version = "0.3.44", optional = true }
|
backtrace = { version = "0.3.44", optional = true }
|
||||||
|
|
||||||
arena = { path = "../arena" }
|
arena = { path = "../arena", version = "0.0.0" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
perf-event = "0.4"
|
perf-event = "0.4"
|
||||||
|
|
|
@ -16,10 +16,10 @@ serde = { version = "1.0.106", features = ["derive"] }
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
anyhow = "1.0.26"
|
anyhow = "1.0.26"
|
||||||
|
|
||||||
arena = { path = "../arena" }
|
arena = { path = "../arena", version = "0.0.0" }
|
||||||
cfg = { path = "../cfg" }
|
cfg = { path = "../cfg", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
toolchain = { path = "../toolchain" }
|
toolchain = { path = "../toolchain", version = "0.0.0" }
|
||||||
proc_macro_api = { path = "../proc_macro_api" }
|
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
|
||||||
paths = { path = "../paths" }
|
paths = { path = "../paths", version = "0.0.0" }
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
|
|
|
@ -5,6 +5,7 @@ license = "MIT OR Apache-2.0"
|
||||||
authors = ["rust-analyzer developers"]
|
authors = ["rust-analyzer developers"]
|
||||||
autobins = false
|
autobins = false
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|
|
@ -14,12 +14,12 @@ doctest = false
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
itertools = "0.9.0"
|
itertools = "0.9.0"
|
||||||
|
|
||||||
text_edit = { path = "../text_edit" }
|
text_edit = { path = "../text_edit", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
base_db = { path = "../base_db" }
|
base_db = { path = "../base_db", version = "0.0.0" }
|
||||||
ide_db = { path = "../ide_db" }
|
ide_db = { path = "../ide_db", version = "0.0.0" }
|
||||||
hir = { path = "../hir" }
|
hir = { path = "../hir", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
expect-test = "0.1"
|
expect-test = "0.1"
|
||||||
|
|
|
@ -23,9 +23,9 @@ once_cell = "1.3.1"
|
||||||
smol_str = { version = "0.1.15", features = ["serde"] }
|
smol_str = { version = "0.1.15", features = ["serde"] }
|
||||||
serde = { version = "1.0.106", features = ["derive"] }
|
serde = { version = "1.0.106", features = ["derive"] }
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
text_edit = { path = "../text_edit" }
|
text_edit = { path = "../text_edit", version = "0.0.0" }
|
||||||
parser = { path = "../parser" }
|
parser = { path = "../parser", version = "0.0.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
walkdir = "2.3.1"
|
walkdir = "2.3.1"
|
||||||
|
|
|
@ -15,4 +15,4 @@ text-size = "1.0.0"
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
|
|
|
@ -13,4 +13,4 @@ doctest = false
|
||||||
# to reduce number of compilations
|
# to reduce number of compilations
|
||||||
smol_str = { version = "0.1.15", features = ["serde"] }
|
smol_str = { version = "0.1.15", features = ["serde"] }
|
||||||
|
|
||||||
stdx = { path = "../stdx" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
|
|
|
@ -16,5 +16,5 @@ walkdir = "2.3.1"
|
||||||
crossbeam-channel = "0.4.0"
|
crossbeam-channel = "0.4.0"
|
||||||
notify = "5.0.0-pre.3"
|
notify = "5.0.0-pre.3"
|
||||||
|
|
||||||
vfs = { path = "../vfs" }
|
vfs = { path = "../vfs", version = "0.0.0" }
|
||||||
paths = { path = "../paths" }
|
paths = { path = "../paths", version = "0.0.0" }
|
||||||
|
|
|
@ -12,4 +12,4 @@ doctest = false
|
||||||
rustc-hash = "1.0"
|
rustc-hash = "1.0"
|
||||||
fst = "0.4"
|
fst = "0.4"
|
||||||
|
|
||||||
paths = { path = "../paths" }
|
paths = { path = "../paths", version = "0.0.0" }
|
||||||
|
|
Loading…
Reference in a new issue