aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2020-10-13 14:57:01 +0100
committerLaurenČ›iu Nicola <[email protected]>2020-10-13 14:57:01 +0100
commitdb7813ef2c58caeef342fd007aa2d54b581b78b7 (patch)
tree9b9fec8781dafd7f0e0cd99c9942f16a9462e14c
parentc6605affe4efe39d9c83e97b428e1de4bdcda81d (diff)
Bump crossbeam-channel in crates
-rw-r--r--Cargo.lock52
-rw-r--r--crates/flycheck/Cargo.toml2
-rw-r--r--crates/proc_macro_api/Cargo.toml2
-rw-r--r--crates/vfs-notify/Cargo.toml2
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]]
253name = "const_fn"
254version = "0.4.2"
255source = "registry+https://github.com/rust-lang/crates.io-index"
256checksum = "ce90df4c658c62f12d78f7508cf92f9173e5184a539c10bfe54a3107b3ffd0f2"
257
258[[package]]
253name = "crc32fast" 259name = "crc32fast"
254version = "1.2.0" 260version = "1.2.0"
255source = "registry+https://github.com/rust-lang/crates.io-index" 261source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -264,18 +270,28 @@ version = "0.4.4"
264source = "registry+https://github.com/rust-lang/crates.io-index" 270source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" 271checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
266dependencies = [ 272dependencies = [
267 "crossbeam-utils", 273 "crossbeam-utils 0.7.2",
268 "maybe-uninit", 274 "maybe-uninit",
269] 275]
270 276
271[[package]] 277[[package]]
278name = "crossbeam-channel"
279version = "0.5.0"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
282dependencies = [
283 "cfg-if 1.0.0",
284 "crossbeam-utils 0.8.0",
285]
286
287[[package]]
272name = "crossbeam-deque" 288name = "crossbeam-deque"
273version = "0.7.3" 289version = "0.7.3"
274source = "registry+https://github.com/rust-lang/crates.io-index" 290source = "registry+https://github.com/rust-lang/crates.io-index"
275checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" 291checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
276dependencies = [ 292dependencies = [
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"
287dependencies = [ 303dependencies = [
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]]
325name = "crossbeam-utils"
326version = "0.8.0"
327source = "registry+https://github.com/rust-lang/crates.io-index"
328checksum = "ec91540d98355f690a86367e566ecad2e9e579f230230eb7c21398372be73ea5"
329dependencies = [
330 "autocfg",
331 "cfg-if 1.0.0",
332 "const_fn",
333 "lazy_static",
334]
335
336[[package]]
309name = "difference" 337name = "difference"
310version = "2.0.0" 338version = "2.0.0"
311source = "registry+https://github.com/rust-lang/crates.io-index" 339source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -386,7 +414,7 @@ name = "flycheck"
386version = "0.0.0" 414version = "0.0.0"
387dependencies = [ 415dependencies = [
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"
778source = "registry+https://github.com/rust-lang/crates.io-index" 806source = "registry+https://github.com/rust-lang/crates.io-index"
779checksum = "87fce8851309a325974ec76efe7c9d954d152c9ff4fded6520eb3c96d0aa3a96" 807checksum = "87fce8851309a325974ec76efe7c9d954d152c9ff4fded6520eb3c96d0aa3a96"
780dependencies = [ 808dependencies = [
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"
938dependencies = [ 966dependencies = [
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 = [
1100name = "proc_macro_api" 1128name = "proc_macro_api"
1101version = "0.0.0" 1129version = "0.0.0"
1102dependencies = [ 1130dependencies = [
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"
1208source = "registry+https://github.com/rust-lang/crates.io-index" 1236source = "registry+https://github.com/rust-lang/crates.io-index"
1209checksum = "e8c4fec834fb6e6d2dd5eece3c7b432a52f0ba887cf40e595190c4107edc08bf" 1237checksum = "e8c4fec834fb6e6d2dd5eece3c7b432a52f0ba887cf40e595190c4107edc08bf"
1210dependencies = [ 1238dependencies = [
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"
1337source = "registry+https://github.com/rust-lang/crates.io-index" 1365source = "registry+https://github.com/rust-lang/crates.io-index"
1338checksum = "9ab29056d4fb4048a5f0d169c9b6e5526160c9ec37aded5a6879c2c9c445a8e4" 1366checksum = "9ab29056d4fb4048a5f0d169c9b6e5526160c9ec37aded5a6879c2c9c445a8e4"
1339dependencies = [ 1367dependencies = [
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 = [
1806name = "vfs-notify" 1834name = "vfs-notify"
1807version = "0.0.0" 1835version = "0.0.0"
1808dependencies = [ 1836dependencies = [
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"
10doctest = false 10doctest = false
11 11
12[dependencies] 12[dependencies]
13crossbeam-channel = "0.4.0" 13crossbeam-channel = "0.5.0"
14log = "0.4.8" 14log = "0.4.8"
15cargo_metadata = "0.11.1" 15cargo_metadata = "0.11.1"
16serde_json = "1.0.48" 16serde_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
13serde = { version = "1.0", features = ["derive"] } 13serde = { version = "1.0", features = ["derive"] }
14serde_json = "1.0" 14serde_json = "1.0"
15log = "0.4.8" 15log = "0.4.8"
16crossbeam-channel = "0.4.0" 16crossbeam-channel = "0.5.0"
17jod-thread = "0.1.1" 17jod-thread = "0.1.1"
18 18
19tt = { path = "../tt", version = "0.0.0" } 19tt = { 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"
14rustc-hash = "1.0" 14rustc-hash = "1.0"
15jod-thread = "0.1.0" 15jod-thread = "0.1.0"
16walkdir = "2.3.1" 16walkdir = "2.3.1"
17crossbeam-channel = "0.4.0" 17crossbeam-channel = "0.5.0"
18notify = "5.0.0-pre.3" 18notify = "5.0.0-pre.3"
19 19
20vfs = { path = "../vfs", version = "0.0.0" } 20vfs = { path = "../vfs", version = "0.0.0" }