Skip to content

Commit a8fa5cd

Browse files
committed
Add version to deps in cargo.toml
1 parent e65d48d commit a8fa5cd

File tree

22 files changed

+99
-98
lines changed

22 files changed

+99
-98
lines changed

crates/assists/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ rustc-hash = "1.1.0"
1313
itertools = "0.9.0"
1414
either = "1.5.3"
1515

16-
stdx = { path = "../stdx" }
17-
syntax = { path = "../syntax" }
18-
text_edit = { path = "../text_edit" }
19-
profile = { path = "../profile" }
20-
base_db = { path = "../base_db" }
21-
ide_db = { path = "../ide_db" }
22-
hir = { path = "../hir" }
23-
test_utils = { path = "../test_utils" }
16+
stdx = { path = "../stdx", version = "0.0.0" }
17+
syntax = { path = "../syntax", version = "0.0.0" }
18+
text_edit = { path = "../text_edit", version = "0.0.0" }
19+
profile = { path = "../profile", version = "0.0.0" }
20+
base_db = { path = "../base_db", version = "0.0.0" }
21+
ide_db = { path = "../ide_db", version = "0.0.0" }
22+
hir = { path = "../hir", version = "0.0.0" }
23+
test_utils = { path = "../test_utils", version = "0.0.0" }

crates/base_db/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ doctest = false
1212
salsa = "0.15.2"
1313
rustc-hash = "1.1.0"
1414

15-
syntax = { path = "../syntax" }
16-
cfg = { path = "../cfg" }
17-
profile = { path = "../profile" }
18-
tt = { path = "../tt" }
19-
test_utils = { path = "../test_utils" }
20-
vfs = { path = "../vfs" }
21-
stdx = { path = "../stdx" }
15+
syntax = { path = "../syntax", version = "0.0.0" }
16+
cfg = { path = "../cfg", version = "0.0.0" }
17+
profile = { path = "../profile", version = "0.0.0" }
18+
tt = { path = "../tt", version = "0.0.0" }
19+
test_utils = { path = "../test_utils", version = "0.0.0" }
20+
vfs = { path = "../vfs", version = "0.0.0" }
21+
stdx = { path = "../stdx", version = "0.0.0" }

crates/cfg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ doctest = false
1111
[dependencies]
1212
rustc-hash = "1.1.0"
1313

14-
tt = { path = "../tt" }
14+
tt = { path = "../tt", version = "0.0.0" }
1515

1616
[dev-dependencies]
1717
mbe = { path = "../mbe" }

crates/flycheck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ cargo_metadata = "0.11.1"
1515
serde_json = "1.0.48"
1616
jod-thread = "0.1.1"
1717

18-
toolchain = { path = "../toolchain" }
18+
toolchain = { path = "../toolchain", version = "0.0.0" }

crates/hir/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ either = "1.5.3"
1515
arrayvec = "0.5.1"
1616
itertools = "0.9.0"
1717

18-
stdx = { path = "../stdx" }
19-
syntax = { path = "../syntax" }
20-
base_db = { path = "../base_db" }
21-
profile = { path = "../profile" }
22-
hir_expand = { path = "../hir_expand" }
23-
hir_def = { path = "../hir_def" }
24-
hir_ty = { path = "../hir_ty" }
18+
stdx = { path = "../stdx", version = "0.0.0" }
19+
syntax = { path = "../syntax", version = "0.0.0" }
20+
base_db = { path = "../base_db", version = "0.0.0" }
21+
profile = { path = "../profile", version = "0.0.0" }
22+
hir_expand = { path = "../hir_expand", version = "0.0.0" }
23+
hir_def = { path = "../hir_def", version = "0.0.0" }
24+
hir_ty = { path = "../hir_ty", version = "0.0.0" }

crates/hir_def/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ itertools = "0.9.0"
2020
indexmap = "1.4.0"
2121
smallvec = "1.4.0"
2222

23-
stdx = { path = "../stdx" }
24-
arena = { path = "../arena" }
25-
base_db = { path = "../base_db" }
26-
syntax = { path = "../syntax" }
27-
profile = { path = "../profile" }
28-
hir_expand = { path = "../hir_expand" }
29-
test_utils = { path = "../test_utils" }
30-
mbe = { path = "../mbe" }
31-
cfg = { path = "../cfg" }
32-
tt = { path = "../tt" }
23+
stdx = { path = "../stdx", version = "0.0.0" }
24+
arena = { path = "../arena", version = "0.0.0" }
25+
base_db = { path = "../base_db", version = "0.0.0" }
26+
syntax = { path = "../syntax", version = "0.0.0" }
27+
profile = { path = "../profile", version = "0.0.0" }
28+
hir_expand = { path = "../hir_expand", version = "0.0.0" }
29+
test_utils = { path = "../test_utils", version = "0.0.0" }
30+
mbe = { path = "../mbe", version = "0.0.0" }
31+
cfg = { path = "../cfg", version = "0.0.0" }
32+
tt = { path = "../tt", version = "0.0.0" }
3333

3434
[dev-dependencies]
3535
expect-test = "0.1"

crates/hir_expand/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ log = "0.4.8"
1313
either = "1.5.3"
1414
rustc-hash = "1.0.0"
1515

16-
arena = { path = "../arena" }
17-
base_db = { path = "../base_db" }
18-
syntax = { path = "../syntax" }
19-
parser = { path = "../parser" }
20-
profile = { path = "../profile" }
21-
tt = { path = "../tt" }
22-
mbe = { path = "../mbe" }
23-
test_utils = { path = "../test_utils"}
16+
arena = { path = "../arena", version = "0.0.0" }
17+
base_db = { path = "../base_db", version = "0.0.0" }
18+
syntax = { path = "../syntax", version = "0.0.0" }
19+
parser = { path = "../parser", version = "0.0.0" }
20+
profile = { path = "../profile", version = "0.0.0" }
21+
tt = { path = "../tt", version = "0.0.0" }
22+
mbe = { path = "../mbe", version = "0.0.0" }
23+
test_utils = { path = "../test_utils", version = "0.0.0" }

crates/hir_ty/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ chalk-solve = { version = "0.23.0" }
2020
chalk-ir = { version = "0.23.0" }
2121
chalk-recursive = { version = "0.23.0" }
2222

23-
stdx = { path = "../stdx" }
24-
hir_def = { path = "../hir_def" }
25-
hir_expand = { path = "../hir_expand" }
26-
arena = { path = "../arena" }
27-
base_db = { path = "../base_db" }
28-
profile = { path = "../profile" }
29-
syntax = { path = "../syntax" }
30-
test_utils = { path = "../test_utils" }
23+
stdx = { path = "../stdx", version = "0.0.0" }
24+
hir_def = { path = "../hir_def", version = "0.0.0" }
25+
hir_expand = { path = "../hir_expand", version = "0.0.0" }
26+
arena = { path = "../arena", version = "0.0.0" }
27+
base_db = { path = "../base_db", version = "0.0.0" }
28+
profile = { path = "../profile", version = "0.0.0" }
29+
syntax = { path = "../syntax", version = "0.0.0" }
30+
test_utils = { path = "../test_utils", version = "0.0.0" }
3131

3232
[dev-dependencies]
3333
expect-test = "0.1"

crates/ide/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ log = "0.4.8"
1616
rustc-hash = "1.1.0"
1717
oorandom = "11.1.2"
1818

19-
stdx = { path = "../stdx" }
20-
syntax = { path = "../syntax" }
21-
text_edit = { path = "../text_edit" }
22-
base_db = { path = "../base_db" }
23-
ide_db = { path = "../ide_db" }
24-
cfg = { path = "../cfg" }
25-
profile = { path = "../profile" }
26-
test_utils = { path = "../test_utils" }
27-
assists = { path = "../assists" }
28-
ssr = { path = "../ssr" }
19+
stdx = { path = "../stdx", version = "0.0.0" }
20+
syntax = { path = "../syntax", version = "0.0.0" }
21+
text_edit = { path = "../text_edit", version = "0.0.0" }
22+
base_db = { path = "../base_db", version = "0.0.0" }
23+
ide_db = { path = "../ide_db", version = "0.0.0" }
24+
cfg = { path = "../cfg", version = "0.0.0" }
25+
profile = { path = "../profile", version = "0.0.0" }
26+
test_utils = { path = "../test_utils", version = "0.0.0" }
27+
assists = { path = "../assists", version = "0.0.0" }
28+
ssr = { path = "../ssr", version = "0.0.0" }
2929

3030
# ide should depend only on the top-level `hir` package. if you need
3131
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
32-
hir = { path = "../hir" }
32+
hir = { path = "../hir", version = "0.0.0" }
3333

3434
[dev-dependencies]
3535
expect-test = "0.1"

crates/ide_db/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ rustc-hash = "1.1.0"
1919
once_cell = "1.3.1"
2020
either = "1.5.3"
2121

22-
stdx = { path = "../stdx" }
23-
syntax = { path = "../syntax" }
24-
text_edit = { path = "../text_edit" }
25-
base_db = { path = "../base_db" }
26-
profile = { path = "../profile" }
27-
test_utils = { path = "../test_utils" }
22+
stdx = { path = "../stdx", version = "0.0.0" }
23+
syntax = { path = "../syntax", version = "0.0.0" }
24+
text_edit = { path = "../text_edit", version = "0.0.0" }
25+
base_db = { path = "../base_db", version = "0.0.0" }
26+
profile = { path = "../profile", version = "0.0.0" }
27+
test_utils = { path = "../test_utils", version = "0.0.0" }
2828
# ide should depend only on the top-level `hir` package. if you need
2929
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
30-
hir = { path = "../hir" }
30+
hir = { path = "../hir", version = "0.0.0" }

0 commit comments

Comments
 (0)