diff options
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | crates/ra_assists/Cargo.toml | 4 | ||||
-rw-r--r-- | crates/ra_cargo_watch/Cargo.toml | 12 | ||||
-rw-r--r-- | crates/ra_cfg/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_db/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_fmt/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_hir/Cargo.toml | 6 | ||||
-rw-r--r-- | crates/ra_hir_def/Cargo.toml | 12 | ||||
-rw-r--r-- | crates/ra_hir_expand/Cargo.toml | 4 | ||||
-rw-r--r-- | crates/ra_hir_ty/Cargo.toml | 8 | ||||
-rw-r--r-- | crates/ra_ide/Cargo.toml | 20 | ||||
-rw-r--r-- | crates/ra_ide_db/Cargo.toml | 19 | ||||
-rw-r--r-- | crates/ra_mbe/Cargo.toml | 6 | ||||
-rw-r--r-- | crates/ra_prof/Cargo.toml | 8 | ||||
-rw-r--r-- | crates/ra_project_model/Cargo.toml | 10 | ||||
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 12 | ||||
-rw-r--r-- | crates/ra_text_edit/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_tt/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 30 | ||||
-rw-r--r-- | crates/test_utils/Cargo.toml | 4 | ||||
-rw-r--r-- | xtask/Cargo.toml | 8 |
21 files changed, 109 insertions, 84 deletions
diff --git a/Cargo.lock b/Cargo.lock index e7b873076..c10d72aa4 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1043,6 +1043,7 @@ version = "0.1.0" | |||
1043 | dependencies = [ | 1043 | dependencies = [ |
1044 | "either", | 1044 | "either", |
1045 | "format-buf", | 1045 | "format-buf", |
1046 | "fst", | ||
1046 | "indexmap", | 1047 | "indexmap", |
1047 | "insta", | 1048 | "insta", |
1048 | "itertools", | 1049 | "itertools", |
@@ -1059,8 +1060,11 @@ dependencies = [ | |||
1059 | "ra_syntax", | 1060 | "ra_syntax", |
1060 | "ra_text_edit", | 1061 | "ra_text_edit", |
1061 | "rand", | 1062 | "rand", |
1063 | "rayon", | ||
1062 | "rustc-hash", | 1064 | "rustc-hash", |
1065 | "superslice", | ||
1063 | "test_utils", | 1066 | "test_utils", |
1067 | "unicase", | ||
1064 | ] | 1068 | ] |
1065 | 1069 | ||
1066 | [[package]] | 1070 | [[package]] |
@@ -1087,6 +1091,7 @@ dependencies = [ | |||
1087 | "rustc-hash", | 1091 | "rustc-hash", |
1088 | "superslice", | 1092 | "superslice", |
1089 | "test_utils", | 1093 | "test_utils", |
1094 | "unicase", | ||
1090 | ] | 1095 | ] |
1091 | 1096 | ||
1092 | [[package]] | 1097 | [[package]] |
@@ -1598,6 +1603,15 @@ dependencies = [ | |||
1598 | ] | 1603 | ] |
1599 | 1604 | ||
1600 | [[package]] | 1605 | [[package]] |
1606 | name = "unicase" | ||
1607 | version = "2.6.0" | ||
1608 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1609 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
1610 | dependencies = [ | ||
1611 | "version_check", | ||
1612 | ] | ||
1613 | |||
1614 | [[package]] | ||
1601 | name = "unicode-bidi" | 1615 | name = "unicode-bidi" |
1602 | version = "0.3.4" | 1616 | version = "0.3.4" |
1603 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1617 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1640,6 +1654,12 @@ dependencies = [ | |||
1640 | ] | 1654 | ] |
1641 | 1655 | ||
1642 | [[package]] | 1656 | [[package]] |
1657 | name = "version_check" | ||
1658 | version = "0.9.1" | ||
1659 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1660 | checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" | ||
1661 | |||
1662 | [[package]] | ||
1643 | name = "walkdir" | 1663 | name = "walkdir" |
1644 | version = "2.3.1" | 1664 | version = "2.3.1" |
1645 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1665 | source = "registry+https://github.com/rust-lang/crates.io-index" |
diff --git a/crates/ra_assists/Cargo.toml b/crates/ra_assists/Cargo.toml index 6973038d4..12a933645 100644 --- a/crates/ra_assists/Cargo.toml +++ b/crates/ra_assists/Cargo.toml | |||
@@ -10,8 +10,8 @@ doctest = false | |||
10 | [dependencies] | 10 | [dependencies] |
11 | format-buf = "1.0.0" | 11 | format-buf = "1.0.0" |
12 | join_to_string = "0.1.3" | 12 | join_to_string = "0.1.3" |
13 | rustc-hash = "1.0" | 13 | rustc-hash = "1.1.0" |
14 | either = "1.5" | 14 | either = "1.5.3" |
15 | 15 | ||
16 | ra_syntax = { path = "../ra_syntax" } | 16 | ra_syntax = { path = "../ra_syntax" } |
17 | ra_text_edit = { path = "../ra_text_edit" } | 17 | ra_text_edit = { path = "../ra_text_edit" } |
diff --git a/crates/ra_cargo_watch/Cargo.toml b/crates/ra_cargo_watch/Cargo.toml index dd814fc9d..b09650d98 100644 --- a/crates/ra_cargo_watch/Cargo.toml +++ b/crates/ra_cargo_watch/Cargo.toml | |||
@@ -5,14 +5,14 @@ version = "0.1.0" | |||
5 | authors = ["rust-analyzer developers"] | 5 | authors = ["rust-analyzer developers"] |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | crossbeam-channel = "0.4" | 8 | crossbeam-channel = "0.4.0" |
9 | lsp-types = { version = "0.70.0", features = ["proposed"] } | 9 | lsp-types = { version = "0.70.1", features = ["proposed"] } |
10 | log = "0.4.3" | 10 | log = "0.4.8" |
11 | cargo_metadata = "0.9.1" | 11 | cargo_metadata = "0.9.1" |
12 | jod-thread = "0.1.0" | 12 | jod-thread = "0.1.0" |
13 | parking_lot = "0.10.0" | 13 | parking_lot = "0.10.0" |
14 | serde_json = "1.0.45" | 14 | serde_json = "1.0.48" |
15 | 15 | ||
16 | [dev-dependencies] | 16 | [dev-dependencies] |
17 | insta = "0.13.0" | 17 | insta = "0.13.1" |
18 | serde_json = "1.0" \ No newline at end of file | 18 | serde_json = "1.0.48" |
diff --git a/crates/ra_cfg/Cargo.toml b/crates/ra_cfg/Cargo.toml index dd5ff88b0..9165076a5 100644 --- a/crates/ra_cfg/Cargo.toml +++ b/crates/ra_cfg/Cargo.toml | |||
@@ -8,7 +8,7 @@ authors = ["rust-analyzer developers"] | |||
8 | doctest = false | 8 | doctest = false |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | rustc-hash = "1.0.1" | 11 | rustc-hash = "1.1.0" |
12 | 12 | ||
13 | ra_syntax = { path = "../ra_syntax" } | 13 | ra_syntax = { path = "../ra_syntax" } |
14 | tt = { path = "../ra_tt", package = "ra_tt" } | 14 | tt = { path = "../ra_tt", package = "ra_tt" } |
diff --git a/crates/ra_db/Cargo.toml b/crates/ra_db/Cargo.toml index 7afa5d8fc..878c22ba9 100644 --- a/crates/ra_db/Cargo.toml +++ b/crates/ra_db/Cargo.toml | |||
@@ -10,7 +10,7 @@ doctest = false | |||
10 | [dependencies] | 10 | [dependencies] |
11 | salsa = "0.14.1" | 11 | salsa = "0.14.1" |
12 | relative-path = "1.0.0" | 12 | relative-path = "1.0.0" |
13 | rustc-hash = "1.0" | 13 | rustc-hash = "1.1.0" |
14 | 14 | ||
15 | ra_syntax = { path = "../ra_syntax" } | 15 | ra_syntax = { path = "../ra_syntax" } |
16 | ra_cfg = { path = "../ra_cfg" } | 16 | ra_cfg = { path = "../ra_cfg" } |
diff --git a/crates/ra_fmt/Cargo.toml b/crates/ra_fmt/Cargo.toml index 9969d4746..ea9befeaf 100644 --- a/crates/ra_fmt/Cargo.toml +++ b/crates/ra_fmt/Cargo.toml | |||
@@ -9,6 +9,6 @@ publish = false | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | itertools = "0.8.0" | 12 | itertools = "0.8.2" |
13 | 13 | ||
14 | ra_syntax = { path = "../ra_syntax" } | 14 | ra_syntax = { path = "../ra_syntax" } |
diff --git a/crates/ra_hir/Cargo.toml b/crates/ra_hir/Cargo.toml index 7dc31ad3c..0555a0de7 100644 --- a/crates/ra_hir/Cargo.toml +++ b/crates/ra_hir/Cargo.toml | |||
@@ -8,9 +8,9 @@ authors = ["rust-analyzer developers"] | |||
8 | doctest = false | 8 | doctest = false |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | log = "0.4.5" | 11 | log = "0.4.8" |
12 | rustc-hash = "1.0" | 12 | rustc-hash = "1.1.0" |
13 | either = "1.5" | 13 | either = "1.5.3" |
14 | 14 | ||
15 | ra_syntax = { path = "../ra_syntax" } | 15 | ra_syntax = { path = "../ra_syntax" } |
16 | ra_db = { path = "../ra_db" } | 16 | ra_db = { path = "../ra_db" } |
diff --git a/crates/ra_hir_def/Cargo.toml b/crates/ra_hir_def/Cargo.toml index 6b9be9948..5053d0688 100644 --- a/crates/ra_hir_def/Cargo.toml +++ b/crates/ra_hir_def/Cargo.toml | |||
@@ -8,11 +8,11 @@ authors = ["rust-analyzer developers"] | |||
8 | doctest = false | 8 | doctest = false |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | log = "0.4.5" | 11 | log = "0.4.8" |
12 | once_cell = "1.0.1" | 12 | once_cell = "1.3.1" |
13 | rustc-hash = "1.0" | 13 | rustc-hash = "1.1.0" |
14 | either = "1.5" | 14 | either = "1.5.3" |
15 | anymap = "0.12" | 15 | anymap = "0.12.1" |
16 | drop_bomb = "0.1.4" | 16 | drop_bomb = "0.1.4" |
17 | itertools = "0.8.2" | 17 | itertools = "0.8.2" |
18 | 18 | ||
@@ -27,4 +27,4 @@ ra_cfg = { path = "../ra_cfg" } | |||
27 | tt = { path = "../ra_tt", package = "ra_tt" } | 27 | tt = { path = "../ra_tt", package = "ra_tt" } |
28 | 28 | ||
29 | [dev-dependencies] | 29 | [dev-dependencies] |
30 | insta = "0.13.0" | 30 | insta = "0.13.1" |
diff --git a/crates/ra_hir_expand/Cargo.toml b/crates/ra_hir_expand/Cargo.toml index 3ae4376dc..d6e3c1f76 100644 --- a/crates/ra_hir_expand/Cargo.toml +++ b/crates/ra_hir_expand/Cargo.toml | |||
@@ -8,8 +8,8 @@ authors = ["rust-analyzer developers"] | |||
8 | doctest = false | 8 | doctest = false |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | log = "0.4.5" | 11 | log = "0.4.8" |
12 | either = "1.5" | 12 | either = "1.5.3" |
13 | 13 | ||
14 | ra_arena = { path = "../ra_arena" } | 14 | ra_arena = { path = "../ra_arena" } |
15 | ra_db = { path = "../ra_db" } | 15 | ra_db = { path = "../ra_db" } |
diff --git a/crates/ra_hir_ty/Cargo.toml b/crates/ra_hir_ty/Cargo.toml index f5484bf70..49cafc539 100644 --- a/crates/ra_hir_ty/Cargo.toml +++ b/crates/ra_hir_ty/Cargo.toml | |||
@@ -9,9 +9,9 @@ doctest = false | |||
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | arrayvec = "0.5.1" | 11 | arrayvec = "0.5.1" |
12 | ena = "0.13" | 12 | ena = "0.13.1" |
13 | log = "0.4.5" | 13 | log = "0.4.8" |
14 | rustc-hash = "1.0" | 14 | rustc-hash = "1.1.0" |
15 | 15 | ||
16 | hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } | 16 | hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } |
17 | hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" } | 17 | hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" } |
@@ -28,4 +28,4 @@ chalk-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "af48f30 | |||
28 | lalrpop-intern = "0.15.1" | 28 | lalrpop-intern = "0.15.1" |
29 | 29 | ||
30 | [dev-dependencies] | 30 | [dev-dependencies] |
31 | insta = "0.13.0" | 31 | insta = "0.13.1" |
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index 97dea5ffd..3407d2598 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml | |||
@@ -11,15 +11,19 @@ doctest = false | |||
11 | wasm = [] | 11 | wasm = [] |
12 | 12 | ||
13 | [dependencies] | 13 | [dependencies] |
14 | either = "1.5" | 14 | either = "1.5.3" |
15 | format-buf = "1.0.0" | 15 | format-buf = "1.0.0" |
16 | indexmap = "1.3.0" | 16 | indexmap = "1.3.2" |
17 | itertools = "0.8.0" | 17 | itertools = "0.8.2" |
18 | join_to_string = "0.1.3" | 18 | join_to_string = "0.1.3" |
19 | log = "0.4.5" | 19 | log = "0.4.8" |
20 | rustc-hash = "1.0" | 20 | rayon = "1.3.0" |
21 | rand = { version = "0.7.0", features = ["small_rng"] } | 21 | fst = { version = "0.3.5", default-features = false } |
22 | once_cell = "1.2.0" | 22 | rustc-hash = "1.1.0" |
23 | unicase = "2.6.0" | ||
24 | superslice = "1.0.0" | ||
25 | rand = { version = "0.7.3", features = ["small_rng"] } | ||
26 | once_cell = "1.3.1" | ||
23 | 27 | ||
24 | ra_syntax = { path = "../ra_syntax" } | 28 | ra_syntax = { path = "../ra_syntax" } |
25 | ra_text_edit = { path = "../ra_text_edit" } | 29 | ra_text_edit = { path = "../ra_text_edit" } |
@@ -36,4 +40,4 @@ ra_assists = { path = "../ra_assists" } | |||
36 | hir = { path = "../ra_hir", package = "ra_hir" } | 40 | hir = { path = "../ra_hir", package = "ra_hir" } |
37 | 41 | ||
38 | [dev-dependencies] | 42 | [dev-dependencies] |
39 | insta = "0.13.0" | 43 | insta = "0.13.1" |
diff --git a/crates/ra_ide_db/Cargo.toml b/crates/ra_ide_db/Cargo.toml index dbe98f3a0..ee409e34e 100644 --- a/crates/ra_ide_db/Cargo.toml +++ b/crates/ra_ide_db/Cargo.toml | |||
@@ -11,17 +11,18 @@ doctest = false | |||
11 | wasm = [] | 11 | wasm = [] |
12 | 12 | ||
13 | [dependencies] | 13 | [dependencies] |
14 | either = "1.5" | 14 | either = "1.5.3" |
15 | format-buf = "1.0.0" | 15 | format-buf = "1.0.0" |
16 | indexmap = "1.3.0" | 16 | indexmap = "1.3.2" |
17 | itertools = "0.8.0" | 17 | itertools = "0.8.2" |
18 | join_to_string = "0.1.3" | 18 | join_to_string = "0.1.3" |
19 | log = "0.4.5" | 19 | log = "0.4.8" |
20 | rayon = "1.0.2" | 20 | rayon = "1.3.0" |
21 | fst = { version = "0.3.1", default-features = false } | 21 | fst = { version = "0.3.5", default-features = false } |
22 | rustc-hash = "1.0" | 22 | rustc-hash = "1.1.0" |
23 | unicase = "2.6.0" | ||
23 | superslice = "1.0.0" | 24 | superslice = "1.0.0" |
24 | once_cell = "1.2.0" | 25 | once_cell = "1.3.1" |
25 | 26 | ||
26 | ra_syntax = { path = "../ra_syntax" } | 27 | ra_syntax = { path = "../ra_syntax" } |
27 | ra_text_edit = { path = "../ra_text_edit" } | 28 | ra_text_edit = { path = "../ra_text_edit" } |
@@ -36,4 +37,4 @@ test_utils = { path = "../test_utils" } | |||
36 | hir = { path = "../ra_hir", package = "ra_hir" } | 37 | hir = { path = "../ra_hir", package = "ra_hir" } |
37 | 38 | ||
38 | [dev-dependencies] | 39 | [dev-dependencies] |
39 | insta = "0.13.0" | 40 | insta = "0.13.1" |
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml index a3fc01f63..4dec24914 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml | |||
@@ -11,9 +11,9 @@ doctest = false | |||
11 | ra_syntax = { path = "../ra_syntax" } | 11 | ra_syntax = { path = "../ra_syntax" } |
12 | ra_parser = { path = "../ra_parser" } | 12 | ra_parser = { path = "../ra_parser" } |
13 | tt = { path = "../ra_tt", package = "ra_tt" } | 13 | tt = { path = "../ra_tt", package = "ra_tt" } |
14 | rustc-hash = "1.0.0" | 14 | rustc-hash = "1.1.0" |
15 | smallvec = "1.0.0" | 15 | smallvec = "1.2.0" |
16 | log = "0.4.5" | 16 | log = "0.4.8" |
17 | 17 | ||
18 | [dev-dependencies] | 18 | [dev-dependencies] |
19 | test_utils = { path = "../test_utils" } | 19 | test_utils = { path = "../test_utils" } |
diff --git a/crates/ra_prof/Cargo.toml b/crates/ra_prof/Cargo.toml index 382e6219a..e06a6d7d2 100644 --- a/crates/ra_prof/Cargo.toml +++ b/crates/ra_prof/Cargo.toml | |||
@@ -9,13 +9,13 @@ publish = false | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | once_cell = "1.0.1" | 12 | once_cell = "1.3.1" |
13 | itertools = "0.8.0" | 13 | itertools = "0.8.2" |
14 | backtrace = "0.3.28" | 14 | backtrace = "0.3.44" |
15 | 15 | ||
16 | [target.'cfg(not(target_env = "msvc"))'.dependencies] | 16 | [target.'cfg(not(target_env = "msvc"))'.dependencies] |
17 | jemallocator = { version = "0.3.2", optional = true } | 17 | jemallocator = { version = "0.3.2", optional = true } |
18 | jemalloc-ctl = { version = "0.3.2", optional = true } | 18 | jemalloc-ctl = { version = "0.3.3", optional = true } |
19 | 19 | ||
20 | [features] | 20 | [features] |
21 | jemalloc = [ "jemallocator", "jemalloc-ctl" ] | 21 | jemalloc = [ "jemallocator", "jemalloc-ctl" ] |
diff --git a/crates/ra_project_model/Cargo.toml b/crates/ra_project_model/Cargo.toml index 653d5bd14..6252241bf 100644 --- a/crates/ra_project_model/Cargo.toml +++ b/crates/ra_project_model/Cargo.toml | |||
@@ -8,16 +8,16 @@ authors = ["rust-analyzer developers"] | |||
8 | doctest = false | 8 | doctest = false |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | log = "0.4.5" | 11 | log = "0.4.8" |
12 | rustc-hash = "1.0" | 12 | rustc-hash = "1.1.0" |
13 | 13 | ||
14 | cargo_metadata = "0.9.0" | 14 | cargo_metadata = "0.9.1" |
15 | 15 | ||
16 | ra_arena = { path = "../ra_arena" } | 16 | ra_arena = { path = "../ra_arena" } |
17 | ra_db = { path = "../ra_db" } | 17 | ra_db = { path = "../ra_db" } |
18 | ra_cfg = { path = "../ra_cfg" } | 18 | ra_cfg = { path = "../ra_cfg" } |
19 | 19 | ||
20 | serde = { version = "1.0.89", features = ["derive"] } | 20 | serde = { version = "1.0.104", features = ["derive"] } |
21 | serde_json = "1.0.39" | 21 | serde_json = "1.0.48" |
22 | 22 | ||
23 | anyhow = "1.0.26" | 23 | anyhow = "1.0.26" |
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index cb72972c5..7891628dc 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -11,12 +11,12 @@ repository = "https://github.com/rust-analyzer/rust-analyzer" | |||
11 | doctest = false | 11 | doctest = false |
12 | 12 | ||
13 | [dependencies] | 13 | [dependencies] |
14 | itertools = "0.8.0" | 14 | itertools = "0.8.2" |
15 | rowan = "0.9.0" | 15 | rowan = "0.9.0" |
16 | rustc_lexer = "0.1.0" | 16 | rustc_lexer = "0.1.0" |
17 | rustc-hash = "1.0.1" | 17 | rustc-hash = "1.1.0" |
18 | arrayvec = "0.5.1" | 18 | arrayvec = "0.5.1" |
19 | once_cell = "1.2.0" | 19 | once_cell = "1.3.1" |
20 | 20 | ||
21 | ra_text_edit = { path = "../ra_text_edit" } | 21 | ra_text_edit = { path = "../ra_text_edit" } |
22 | ra_parser = { path = "../ra_parser" } | 22 | ra_parser = { path = "../ra_parser" } |
@@ -24,9 +24,9 @@ ra_parser = { path = "../ra_parser" } | |||
24 | # This crate transitively depends on `smol_str` via `rowan`. | 24 | # This crate transitively depends on `smol_str` via `rowan`. |
25 | # ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here | 25 | # ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here |
26 | # to reduce number of compilations | 26 | # to reduce number of compilations |
27 | smol_str = { version = "0.1.12", features = ["serde"] } | 27 | smol_str = { version = "0.1.15", features = ["serde"] } |
28 | serde = { version = "1", features = ["derive"] } | 28 | serde = { version = "1.0.104", features = ["derive"] } |
29 | 29 | ||
30 | [dev-dependencies] | 30 | [dev-dependencies] |
31 | test_utils = { path = "../test_utils" } | 31 | test_utils = { path = "../test_utils" } |
32 | walkdir = "2.2.0" | 32 | walkdir = "2.3.1" |
diff --git a/crates/ra_text_edit/Cargo.toml b/crates/ra_text_edit/Cargo.toml index 4490ae43b..a32149299 100644 --- a/crates/ra_text_edit/Cargo.toml +++ b/crates/ra_text_edit/Cargo.toml | |||
@@ -9,7 +9,7 @@ publish = false | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | text_unit = "0.1.6" | 12 | text_unit = "0.1.9" |
13 | 13 | ||
14 | [dev-dependencies] | 14 | [dev-dependencies] |
15 | test_utils = { path = "../test_utils" } | 15 | test_utils = { path = "../test_utils" } |
diff --git a/crates/ra_tt/Cargo.toml b/crates/ra_tt/Cargo.toml index c9601fdcc..f7230a9ca 100644 --- a/crates/ra_tt/Cargo.toml +++ b/crates/ra_tt/Cargo.toml | |||
@@ -10,4 +10,4 @@ doctest = false | |||
10 | [dependencies] | 10 | [dependencies] |
11 | # ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here | 11 | # ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here |
12 | # to reduce number of compilations | 12 | # to reduce number of compilations |
13 | smol_str = { version = "0.1.12", features = ["serde"] } | 13 | smol_str = { version = "0.1.15", features = ["serde"] } |
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 3dae43d2a..c5d6e3831 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -13,32 +13,32 @@ name = "rust-analyzer" | |||
13 | path = "./src/bin/main.rs" | 13 | path = "./src/bin/main.rs" |
14 | 14 | ||
15 | [dependencies] | 15 | [dependencies] |
16 | anyhow = "1.0" | 16 | anyhow = "1.0.26" |
17 | crossbeam-channel = "0.4" | 17 | crossbeam-channel = "0.4.0" |
18 | either = "1.5" | 18 | either = "1.5.3" |
19 | env_logger = { version = "0.7.1", default-features = false } | 19 | env_logger = { version = "0.7.1", default-features = false } |
20 | globset = "0.4.4" | 20 | globset = "0.4.4" |
21 | itertools = "0.8.0" | 21 | itertools = "0.8.2" |
22 | jod-thread = "0.1.0" | 22 | jod-thread = "0.1.0" |
23 | log = "0.4.3" | 23 | log = "0.4.8" |
24 | lsp-types = { version = "0.70.0", features = ["proposed"] } | 24 | lsp-types = { version = "0.70.1", features = ["proposed"] } |
25 | parking_lot = "0.10.0" | 25 | parking_lot = "0.10.0" |
26 | pico-args = "0.3.0" | 26 | pico-args = "0.3.1" |
27 | rand = { version = "0.7.0", features = ["small_rng"] } | 27 | rand = { version = "0.7.3", features = ["small_rng"] } |
28 | relative-path = "1.0.0" | 28 | relative-path = "1.0.0" |
29 | rustc-hash = "1.0" | 29 | rustc-hash = "1.1.0" |
30 | serde = { version = "1.0.83", features = ["derive"] } | 30 | serde = { version = "1.0.104", features = ["derive"] } |
31 | serde_json = "1.0.34" | 31 | serde_json = "1.0.48" |
32 | threadpool = "1.7.1" | 32 | threadpool = "1.7.1" |
33 | 33 | ||
34 | lsp-server = "0.3.0" | 34 | lsp-server = "0.3.1" |
35 | ra_cargo_watch = { path = "../ra_cargo_watch" } | 35 | ra_cargo_watch = { path = "../ra_cargo_watch" } |
36 | ra_ide = { path = "../ra_ide" } | 36 | ra_ide = { path = "../ra_ide" } |
37 | ra_prof = { path = "../ra_prof" } | 37 | ra_prof = { path = "../ra_prof" } |
38 | ra_project_model = { path = "../ra_project_model" } | 38 | ra_project_model = { path = "../ra_project_model" } |
39 | ra_syntax = { path = "../ra_syntax" } | 39 | ra_syntax = { path = "../ra_syntax" } |
40 | ra_text_edit = { path = "../ra_text_edit" } | 40 | ra_text_edit = { path = "../ra_text_edit" } |
41 | ra_vfs = "0.5.0" | 41 | ra_vfs = "0.5.2" |
42 | 42 | ||
43 | # This should only be used in CLI | 43 | # This should only be used in CLI |
44 | ra_db = { path = "../ra_db" } | 44 | ra_db = { path = "../ra_db" } |
@@ -48,10 +48,10 @@ hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" } | |||
48 | 48 | ||
49 | 49 | ||
50 | [target.'cfg(windows)'.dependencies] | 50 | [target.'cfg(windows)'.dependencies] |
51 | winapi = "0.3" | 51 | winapi = "0.3.8" |
52 | 52 | ||
53 | [dev-dependencies] | 53 | [dev-dependencies] |
54 | tempfile = "3" | 54 | tempfile = "3.1.0" |
55 | test_utils = { path = "../test_utils" } | 55 | test_utils = { path = "../test_utils" } |
56 | 56 | ||
57 | [features] | 57 | [features] |
diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index a71366cc4..971592b73 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml | |||
@@ -9,5 +9,5 @@ doctest = false | |||
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | difference = "2.0.0" | 11 | difference = "2.0.0" |
12 | text_unit = "0.1.2" | 12 | text_unit = "0.1.9" |
13 | serde_json = "1.0.34" | 13 | serde_json = "1.0.48" |
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 72dd5e581..a8b9b010d 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml | |||
@@ -9,8 +9,8 @@ publish = false | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | walkdir = "2.1.3" | 12 | walkdir = "2.3.1" |
13 | pico-args = "0.3.0" | 13 | pico-args = "0.3.1" |
14 | quote = "1.0.2" | 14 | quote = "1.0.2" |
15 | proc-macro2 = "1.0.1" | 15 | proc-macro2 = "1.0.8" |
16 | anyhow = "1.0.19" | 16 | anyhow = "1.0.26" |