aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock50
1 files changed, 25 insertions, 25 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c91236fc6..f2069c55e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -354,9 +354,9 @@ checksum = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
354 354
355[[package]] 355[[package]]
356name = "fsevent" 356name = "fsevent"
357version = "0.4.0" 357version = "2.0.2"
358source = "registry+https://github.com/rust-lang/crates.io-index" 358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" 359checksum = "97f347202c95c98805c216f9e1df210e8ebaec9fdb2365700a43c10797a35e63"
360dependencies = [ 360dependencies = [
361 "bitflags", 361 "bitflags",
362 "fsevent-sys", 362 "fsevent-sys",
@@ -364,9 +364,9 @@ dependencies = [
364 364
365[[package]] 365[[package]]
366name = "fsevent-sys" 366name = "fsevent-sys"
367version = "2.0.1" 367version = "3.0.2"
368source = "registry+https://github.com/rust-lang/crates.io-index" 368source = "registry+https://github.com/rust-lang/crates.io-index"
369checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" 369checksum = "77a29c77f1ca394c3e73a9a5d24cfcabb734682d9634fc398f2204a63c994120"
370dependencies = [ 370dependencies = [
371 "libc", 371 "libc",
372] 372]
@@ -483,9 +483,9 @@ dependencies = [
483 483
484[[package]] 484[[package]]
485name = "inotify" 485name = "inotify"
486version = "0.7.1" 486version = "0.8.3"
487source = "registry+https://github.com/rust-lang/crates.io-index" 487source = "registry+https://github.com/rust-lang/crates.io-index"
488checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f" 488checksum = "46dd0a94b393c730779ccfd2a872b67b1eb67be3fc33082e733bdb38b5fde4d4"
489dependencies = [ 489dependencies = [
490 "bitflags", 490 "bitflags",
491 "inotify-sys", 491 "inotify-sys",
@@ -766,11 +766,13 @@ dependencies = [
766 766
767[[package]] 767[[package]]
768name = "notify" 768name = "notify"
769version = "4.0.15" 769version = "5.0.0-pre.3"
770source = "registry+https://github.com/rust-lang/crates.io-index" 770source = "registry+https://github.com/rust-lang/crates.io-index"
771checksum = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd" 771checksum = "77d03607cf88b4b160ba0e9ed425fff3cee3b55ac813f0c685b3a3772da37d0e"
772dependencies = [ 772dependencies = [
773 "anymap",
773 "bitflags", 774 "bitflags",
775 "crossbeam-channel",
774 "filetime", 776 "filetime",
775 "fsevent", 777 "fsevent",
776 "fsevent-sys", 778 "fsevent-sys",
@@ -952,7 +954,9 @@ dependencies = [
952 "relative-path", 954 "relative-path",
953 "rustc-hash", 955 "rustc-hash",
954 "salsa", 956 "salsa",
957 "stdx",
955 "test_utils", 958 "test_utils",
959 "vfs",
956] 960]
957 961
958[[package]] 962[[package]]
@@ -1233,22 +1237,6 @@ dependencies = [
1233] 1237]
1234 1238
1235[[package]] 1239[[package]]
1236name = "ra_vfs"
1237version = "0.6.1"
1238source = "registry+https://github.com/rust-lang/crates.io-index"
1239checksum = "cbf31a173fc77ec59c27cf39af6baa137b40f4dbd45a8b3eccb1b2e4cfc922c1"
1240dependencies = [
1241 "crossbeam-channel",
1242 "jod-thread",
1243 "log",
1244 "notify",
1245 "parking_lot",
1246 "relative-path",
1247 "rustc-hash",
1248 "walkdir",
1249]
1250
1251[[package]]
1252name = "rand" 1240name = "rand"
1253version = "0.7.3" 1241version = "0.7.3"
1254source = "registry+https://github.com/rust-lang/crates.io-index" 1242source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1405,7 +1393,6 @@ dependencies = [
1405 "ra_syntax", 1393 "ra_syntax",
1406 "ra_text_edit", 1394 "ra_text_edit",
1407 "ra_tt", 1395 "ra_tt",
1408 "ra_vfs",
1409 "rand", 1396 "rand",
1410 "rustc-hash", 1397 "rustc-hash",
1411 "serde", 1398 "serde",
@@ -1414,6 +1401,8 @@ dependencies = [
1414 "tempfile", 1401 "tempfile",
1415 "test_utils", 1402 "test_utils",
1416 "threadpool", 1403 "threadpool",
1404 "vfs",
1405 "vfs-notify",
1417 "winapi 0.3.8", 1406 "winapi 0.3.8",
1418] 1407]
1419 1408
@@ -1764,11 +1753,22 @@ dependencies = [
1764name = "vfs" 1753name = "vfs"
1765version = "0.1.0" 1754version = "0.1.0"
1766dependencies = [ 1755dependencies = [
1756 "paths",
1757 "rustc-hash",
1758]
1759
1760[[package]]
1761name = "vfs-notify"
1762version = "0.1.0"
1763dependencies = [
1767 "crossbeam-channel", 1764 "crossbeam-channel",
1768 "globset", 1765 "globset",
1769 "jod-thread", 1766 "jod-thread",
1767 "log",
1768 "notify",
1770 "paths", 1769 "paths",
1771 "rustc-hash", 1770 "rustc-hash",
1771 "vfs",
1772 "walkdir", 1772 "walkdir",
1773] 1773]
1774 1774