diff options
-rw-r--r-- | Cargo.lock | 52 | ||||
-rw-r--r-- | crates/flycheck/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/proc_macro_api/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/vfs-notify/Cargo.toml | 2 |
4 files changed, 43 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock index 0d0302f0e..5506163ed 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -250,6 +250,12 @@ dependencies = [ | |||
250 | ] | 250 | ] |
251 | 251 | ||
252 | [[package]] | 252 | [[package]] |
253 | name = "const_fn" | ||
254 | version = "0.4.2" | ||
255 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
256 | checksum = "ce90df4c658c62f12d78f7508cf92f9173e5184a539c10bfe54a3107b3ffd0f2" | ||
257 | |||
258 | [[package]] | ||
253 | name = "crc32fast" | 259 | name = "crc32fast" |
254 | version = "1.2.0" | 260 | version = "1.2.0" |
255 | source = "registry+https://github.com/rust-lang/crates.io-index" | 261 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -264,18 +270,28 @@ version = "0.4.4" | |||
264 | source = "registry+https://github.com/rust-lang/crates.io-index" | 270 | source = "registry+https://github.com/rust-lang/crates.io-index" |
265 | checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" | 271 | checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" |
266 | dependencies = [ | 272 | dependencies = [ |
267 | "crossbeam-utils", | 273 | "crossbeam-utils 0.7.2", |
268 | "maybe-uninit", | 274 | "maybe-uninit", |
269 | ] | 275 | ] |
270 | 276 | ||
271 | [[package]] | 277 | [[package]] |
278 | name = "crossbeam-channel" | ||
279 | version = "0.5.0" | ||
280 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
281 | checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" | ||
282 | dependencies = [ | ||
283 | "cfg-if 1.0.0", | ||
284 | "crossbeam-utils 0.8.0", | ||
285 | ] | ||
286 | |||
287 | [[package]] | ||
272 | name = "crossbeam-deque" | 288 | name = "crossbeam-deque" |
273 | version = "0.7.3" | 289 | version = "0.7.3" |
274 | source = "registry+https://github.com/rust-lang/crates.io-index" | 290 | source = "registry+https://github.com/rust-lang/crates.io-index" |
275 | checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" | 291 | checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" |
276 | dependencies = [ | 292 | dependencies = [ |
277 | "crossbeam-epoch", | 293 | "crossbeam-epoch", |
278 | "crossbeam-utils", | 294 | "crossbeam-utils 0.7.2", |
279 | "maybe-uninit", | 295 | "maybe-uninit", |
280 | ] | 296 | ] |
281 | 297 | ||
@@ -287,7 +303,7 @@ checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" | |||
287 | dependencies = [ | 303 | dependencies = [ |
288 | "autocfg", | 304 | "autocfg", |
289 | "cfg-if 0.1.10", | 305 | "cfg-if 0.1.10", |
290 | "crossbeam-utils", | 306 | "crossbeam-utils 0.7.2", |
291 | "lazy_static", | 307 | "lazy_static", |
292 | "maybe-uninit", | 308 | "maybe-uninit", |
293 | "memoffset", | 309 | "memoffset", |
@@ -306,6 +322,18 @@ dependencies = [ | |||
306 | ] | 322 | ] |
307 | 323 | ||
308 | [[package]] | 324 | [[package]] |
325 | name = "crossbeam-utils" | ||
326 | version = "0.8.0" | ||
327 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
328 | checksum = "ec91540d98355f690a86367e566ecad2e9e579f230230eb7c21398372be73ea5" | ||
329 | dependencies = [ | ||
330 | "autocfg", | ||
331 | "cfg-if 1.0.0", | ||
332 | "const_fn", | ||
333 | "lazy_static", | ||
334 | ] | ||
335 | |||
336 | [[package]] | ||
309 | name = "difference" | 337 | name = "difference" |
310 | version = "2.0.0" | 338 | version = "2.0.0" |
311 | source = "registry+https://github.com/rust-lang/crates.io-index" | 339 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -386,7 +414,7 @@ name = "flycheck" | |||
386 | version = "0.0.0" | 414 | version = "0.0.0" |
387 | dependencies = [ | 415 | dependencies = [ |
388 | "cargo_metadata", | 416 | "cargo_metadata", |
389 | "crossbeam-channel", | 417 | "crossbeam-channel 0.5.0", |
390 | "jod-thread", | 418 | "jod-thread", |
391 | "log", | 419 | "log", |
392 | "serde_json", | 420 | "serde_json", |
@@ -778,7 +806,7 @@ version = "0.3.4" | |||
778 | source = "registry+https://github.com/rust-lang/crates.io-index" | 806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
779 | checksum = "87fce8851309a325974ec76efe7c9d954d152c9ff4fded6520eb3c96d0aa3a96" | 807 | checksum = "87fce8851309a325974ec76efe7c9d954d152c9ff4fded6520eb3c96d0aa3a96" |
780 | dependencies = [ | 808 | dependencies = [ |
781 | "crossbeam-channel", | 809 | "crossbeam-channel 0.4.4", |
782 | "log", | 810 | "log", |
783 | "serde", | 811 | "serde", |
784 | "serde_json", | 812 | "serde_json", |
@@ -938,7 +966,7 @@ checksum = "77d03607cf88b4b160ba0e9ed425fff3cee3b55ac813f0c685b3a3772da37d0e" | |||
938 | dependencies = [ | 966 | dependencies = [ |
939 | "anymap", | 967 | "anymap", |
940 | "bitflags", | 968 | "bitflags", |
941 | "crossbeam-channel", | 969 | "crossbeam-channel 0.4.4", |
942 | "filetime", | 970 | "filetime", |
943 | "fsevent", | 971 | "fsevent", |
944 | "fsevent-sys", | 972 | "fsevent-sys", |
@@ -1100,7 +1128,7 @@ dependencies = [ | |||
1100 | name = "proc_macro_api" | 1128 | name = "proc_macro_api" |
1101 | version = "0.0.0" | 1129 | version = "0.0.0" |
1102 | dependencies = [ | 1130 | dependencies = [ |
1103 | "crossbeam-channel", | 1131 | "crossbeam-channel 0.5.0", |
1104 | "jod-thread", | 1132 | "jod-thread", |
1105 | "log", | 1133 | "log", |
1106 | "serde", | 1134 | "serde", |
@@ -1208,9 +1236,9 @@ version = "1.8.1" | |||
1208 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1236 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1209 | checksum = "e8c4fec834fb6e6d2dd5eece3c7b432a52f0ba887cf40e595190c4107edc08bf" | 1237 | checksum = "e8c4fec834fb6e6d2dd5eece3c7b432a52f0ba887cf40e595190c4107edc08bf" |
1210 | dependencies = [ | 1238 | dependencies = [ |
1211 | "crossbeam-channel", | 1239 | "crossbeam-channel 0.4.4", |
1212 | "crossbeam-deque", | 1240 | "crossbeam-deque", |
1213 | "crossbeam-utils", | 1241 | "crossbeam-utils 0.7.2", |
1214 | "lazy_static", | 1242 | "lazy_static", |
1215 | "num_cpus", | 1243 | "num_cpus", |
1216 | ] | 1244 | ] |
@@ -1265,7 +1293,7 @@ dependencies = [ | |||
1265 | "anyhow", | 1293 | "anyhow", |
1266 | "base_db", | 1294 | "base_db", |
1267 | "cfg", | 1295 | "cfg", |
1268 | "crossbeam-channel", | 1296 | "crossbeam-channel 0.4.4", |
1269 | "env_logger", | 1297 | "env_logger", |
1270 | "expect-test", | 1298 | "expect-test", |
1271 | "flycheck", | 1299 | "flycheck", |
@@ -1337,7 +1365,7 @@ version = "0.15.2" | |||
1337 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1338 | checksum = "9ab29056d4fb4048a5f0d169c9b6e5526160c9ec37aded5a6879c2c9c445a8e4" | 1366 | checksum = "9ab29056d4fb4048a5f0d169c9b6e5526160c9ec37aded5a6879c2c9c445a8e4" |
1339 | dependencies = [ | 1367 | dependencies = [ |
1340 | "crossbeam-utils", | 1368 | "crossbeam-utils 0.7.2", |
1341 | "indexmap", | 1369 | "indexmap", |
1342 | "lock_api", | 1370 | "lock_api", |
1343 | "log", | 1371 | "log", |
@@ -1806,7 +1834,7 @@ dependencies = [ | |||
1806 | name = "vfs-notify" | 1834 | name = "vfs-notify" |
1807 | version = "0.0.0" | 1835 | version = "0.0.0" |
1808 | dependencies = [ | 1836 | dependencies = [ |
1809 | "crossbeam-channel", | 1837 | "crossbeam-channel 0.5.0", |
1810 | "jod-thread", | 1838 | "jod-thread", |
1811 | "log", | 1839 | "log", |
1812 | "notify", | 1840 | "notify", |
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml index c230fc1e2..4e2b60b73 100644 --- a/crates/flycheck/Cargo.toml +++ b/crates/flycheck/Cargo.toml | |||
@@ -10,7 +10,7 @@ edition = "2018" | |||
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [dependencies] | 12 | [dependencies] |
13 | crossbeam-channel = "0.4.0" | 13 | crossbeam-channel = "0.5.0" |
14 | log = "0.4.8" | 14 | log = "0.4.8" |
15 | cargo_metadata = "0.11.1" | 15 | cargo_metadata = "0.11.1" |
16 | serde_json = "1.0.48" | 16 | serde_json = "1.0.48" |
diff --git a/crates/proc_macro_api/Cargo.toml b/crates/proc_macro_api/Cargo.toml index 75f67a22e..3863e5189 100644 --- a/crates/proc_macro_api/Cargo.toml +++ b/crates/proc_macro_api/Cargo.toml | |||
@@ -13,7 +13,7 @@ doctest = false | |||
13 | serde = { version = "1.0", features = ["derive"] } | 13 | serde = { version = "1.0", features = ["derive"] } |
14 | serde_json = "1.0" | 14 | serde_json = "1.0" |
15 | log = "0.4.8" | 15 | log = "0.4.8" |
16 | crossbeam-channel = "0.4.0" | 16 | crossbeam-channel = "0.5.0" |
17 | jod-thread = "0.1.1" | 17 | jod-thread = "0.1.1" |
18 | 18 | ||
19 | tt = { path = "../tt", version = "0.0.0" } | 19 | tt = { path = "../tt", version = "0.0.0" } |
diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml index 54b51faab..5b7c33b01 100644 --- a/crates/vfs-notify/Cargo.toml +++ b/crates/vfs-notify/Cargo.toml | |||
@@ -14,7 +14,7 @@ log = "0.4.8" | |||
14 | rustc-hash = "1.0" | 14 | rustc-hash = "1.0" |
15 | jod-thread = "0.1.0" | 15 | jod-thread = "0.1.0" |
16 | walkdir = "2.3.1" | 16 | walkdir = "2.3.1" |
17 | crossbeam-channel = "0.4.0" | 17 | crossbeam-channel = "0.5.0" |
18 | notify = "5.0.0-pre.3" | 18 | notify = "5.0.0-pre.3" |
19 | 19 | ||
20 | vfs = { path = "../vfs", version = "0.0.0" } | 20 | vfs = { path = "../vfs", version = "0.0.0" } |