aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock164
1 files changed, 147 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ade0cc4..fd66bcd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -125,6 +125,15 @@ dependencies = [
125] 125]
126 126
127[[package]] 127[[package]]
128name = "cloudabi"
129version = "0.0.3"
130source = "registry+https://github.com/rust-lang/crates.io-index"
131checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
132dependencies = [
133 "bitflags",
134]
135
136[[package]]
128name = "const-random" 137name = "const-random"
129version = "0.1.8" 138version = "0.1.8"
130source = "registry+https://github.com/rust-lang/crates.io-index" 139source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -152,12 +161,12 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
152 161
153[[package]] 162[[package]]
154name = "crossbeam-channel" 163name = "crossbeam-channel"
155version = "0.4.2" 164version = "0.4.3"
156source = "registry+https://github.com/rust-lang/crates.io-index" 165source = "registry+https://github.com/rust-lang/crates.io-index"
157checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061" 166checksum = "09ee0cc8804d5393478d743b035099520087a5186f3b93fa58cec08fa62407b6"
158dependencies = [ 167dependencies = [
168 "cfg-if",
159 "crossbeam-utils", 169 "crossbeam-utils",
160 "maybe-uninit",
161] 170]
162 171
163[[package]] 172[[package]]
@@ -172,6 +181,31 @@ dependencies = [
172] 181]
173 182
174[[package]] 183[[package]]
184name = "crossterm"
185version = "0.17.7"
186source = "registry+https://github.com/rust-lang/crates.io-index"
187checksum = "6f4919d60f26ae233e14233cc39746c8c8bb8cd7b05840ace83604917b51b6c7"
188dependencies = [
189 "bitflags",
190 "crossterm_winapi",
191 "lazy_static",
192 "libc",
193 "mio 0.7.0",
194 "parking_lot",
195 "signal-hook",
196 "winapi 0.3.9",
197]
198
199[[package]]
200name = "crossterm_winapi"
201version = "0.6.1"
202source = "registry+https://github.com/rust-lang/crates.io-index"
203checksum = "057b7146d02fb50175fd7dbe5158f6097f33d02831f43b4ee8ae4ddf67b68f5c"
204dependencies = [
205 "winapi 0.3.9",
206]
207
208[[package]]
175name = "ctor" 209name = "ctor"
176version = "0.1.15" 210version = "0.1.15"
177source = "registry+https://github.com/rust-lang/crates.io-index" 211source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -190,6 +224,7 @@ dependencies = [
190 "ahash 0.3.8", 224 "ahash 0.3.8",
191 "cfg-if", 225 "cfg-if",
192 "crossbeam-channel", 226 "crossbeam-channel",
227 "crossterm",
193 "cursive_core", 228 "cursive_core",
194 "enumset", 229 "enumset",
195 "lazy_static", 230 "lazy_static",
@@ -260,7 +295,7 @@ dependencies = [
260 295
261[[package]] 296[[package]]
262name = "dijo" 297name = "dijo"
263version = "0.1.4" 298version = "0.2.3"
264dependencies = [ 299dependencies = [
265 "chrono", 300 "chrono",
266 "clap", 301 "clap",
@@ -271,6 +306,7 @@ dependencies = [
271 "notify", 306 "notify",
272 "serde", 307 "serde",
273 "serde_json", 308 "serde_json",
309 "toml",
274 "typetag", 310 "typetag",
275] 311]
276 312
@@ -522,6 +558,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
522checksum = "bd7d4bd64732af4bf3a67f367c27df8520ad7e230c5817b8ff485864d80242b9" 558checksum = "bd7d4bd64732af4bf3a67f367c27df8520ad7e230c5817b8ff485864d80242b9"
523 559
524[[package]] 560[[package]]
561name = "lock_api"
562version = "0.3.4"
563source = "registry+https://github.com/rust-lang/crates.io-index"
564checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
565dependencies = [
566 "scopeguard",
567]
568
569[[package]]
525name = "log" 570name = "log"
526version = "0.4.11" 571version = "0.4.11"
527source = "registry+https://github.com/rust-lang/crates.io-index" 572source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -531,12 +576,6 @@ dependencies = [
531] 576]
532 577
533[[package]] 578[[package]]
534name = "maybe-uninit"
535version = "2.0.0"
536source = "registry+https://github.com/rust-lang/crates.io-index"
537checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
538
539[[package]]
540name = "mio" 579name = "mio"
541version = "0.6.22" 580version = "0.6.22"
542source = "registry+https://github.com/rust-lang/crates.io-index" 581source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -549,13 +588,27 @@ dependencies = [
549 "kernel32-sys", 588 "kernel32-sys",
550 "libc", 589 "libc",
551 "log", 590 "log",
552 "miow", 591 "miow 0.2.1",
553 "net2", 592 "net2",
554 "slab", 593 "slab",
555 "winapi 0.2.8", 594 "winapi 0.2.8",
556] 595]
557 596
558[[package]] 597[[package]]
598name = "mio"
599version = "0.7.0"
600source = "registry+https://github.com/rust-lang/crates.io-index"
601checksum = "6e9971bc8349a361217a8f2a41f5d011274686bd4436465ba51730921039d7fb"
602dependencies = [
603 "lazy_static",
604 "libc",
605 "log",
606 "miow 0.3.5",
607 "ntapi",
608 "winapi 0.3.9",
609]
610
611[[package]]
559name = "mio-extras" 612name = "mio-extras"
560version = "2.0.6" 613version = "2.0.6"
561source = "registry+https://github.com/rust-lang/crates.io-index" 614source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -563,7 +616,7 @@ checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
563dependencies = [ 616dependencies = [
564 "lazycell", 617 "lazycell",
565 "log", 618 "log",
566 "mio", 619 "mio 0.6.22",
567 "slab", 620 "slab",
568] 621]
569 622
@@ -580,6 +633,16 @@ dependencies = [
580] 633]
581 634
582[[package]] 635[[package]]
636name = "miow"
637version = "0.3.5"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "07b88fb9795d4d36d62a012dfbf49a8f5cf12751f36d31a9dbe66d528e58979e"
640dependencies = [
641 "socket2",
642 "winapi 0.3.9",
643]
644
645[[package]]
583name = "net2" 646name = "net2"
584version = "0.2.34" 647version = "0.2.34"
585source = "registry+https://github.com/rust-lang/crates.io-index" 648source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -602,13 +665,22 @@ dependencies = [
602 "fsevent-sys", 665 "fsevent-sys",
603 "inotify", 666 "inotify",
604 "libc", 667 "libc",
605 "mio", 668 "mio 0.6.22",
606 "mio-extras", 669 "mio-extras",
607 "walkdir", 670 "walkdir",
608 "winapi 0.3.9", 671 "winapi 0.3.9",
609] 672]
610 673
611[[package]] 674[[package]]
675name = "ntapi"
676version = "0.3.4"
677source = "registry+https://github.com/rust-lang/crates.io-index"
678checksum = "7a31937dea023539c72ddae0e3571deadc1414b300483fa7aaec176168cfa9d2"
679dependencies = [
680 "winapi 0.3.9",
681]
682
683[[package]]
612name = "num" 684name = "num"
613version = "0.3.0" 685version = "0.3.0"
614source = "registry+https://github.com/rust-lang/crates.io-index" 686source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -687,6 +759,30 @@ dependencies = [
687] 759]
688 760
689[[package]] 761[[package]]
762name = "parking_lot"
763version = "0.10.2"
764source = "registry+https://github.com/rust-lang/crates.io-index"
765checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
766dependencies = [
767 "lock_api",
768 "parking_lot_core",
769]
770
771[[package]]
772name = "parking_lot_core"
773version = "0.7.2"
774source = "registry+https://github.com/rust-lang/crates.io-index"
775checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
776dependencies = [
777 "cfg-if",
778 "cloudabi",
779 "libc",
780 "redox_syscall",
781 "smallvec",
782 "winapi 0.3.9",
783]
784
785[[package]]
690name = "proc-macro-hack" 786name = "proc-macro-hack"
691version = "0.5.16" 787version = "0.5.16"
692source = "registry+https://github.com/rust-lang/crates.io-index" 788source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -694,9 +790,9 @@ checksum = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4"
694 790
695[[package]] 791[[package]]
696name = "proc-macro2" 792name = "proc-macro2"
697version = "1.0.18" 793version = "1.0.19"
698source = "registry+https://github.com/rust-lang/crates.io-index" 794source = "registry+https://github.com/rust-lang/crates.io-index"
699checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa" 795checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12"
700dependencies = [ 796dependencies = [
701 "unicode-xid", 797 "unicode-xid",
702] 798]
@@ -764,6 +860,12 @@ dependencies = [
764] 860]
765 861
766[[package]] 862[[package]]
863name = "scopeguard"
864version = "1.1.0"
865source = "registry+https://github.com/rust-lang/crates.io-index"
866checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
867
868[[package]]
767name = "serde" 869name = "serde"
768version = "1.0.114" 870version = "1.0.114"
769source = "registry+https://github.com/rust-lang/crates.io-index" 871source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -801,6 +903,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed" 903checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed"
802dependencies = [ 904dependencies = [
803 "libc", 905 "libc",
906 "mio 0.7.0",
804 "signal-hook-registry", 907 "signal-hook-registry",
805] 908]
806 909
@@ -821,6 +924,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
821checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 924checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
822 925
823[[package]] 926[[package]]
927name = "smallvec"
928version = "1.4.1"
929source = "registry+https://github.com/rust-lang/crates.io-index"
930checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
931
932[[package]]
933name = "socket2"
934version = "0.3.12"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
937dependencies = [
938 "cfg-if",
939 "libc",
940 "redox_syscall",
941 "winapi 0.3.9",
942]
943
944[[package]]
824name = "stable_deref_trait" 945name = "stable_deref_trait"
825version = "1.2.0" 946version = "1.2.0"
826source = "registry+https://github.com/rust-lang/crates.io-index" 947source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -840,9 +961,9 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
840 961
841[[package]] 962[[package]]
842name = "syn" 963name = "syn"
843version = "1.0.34" 964version = "1.0.35"
844source = "registry+https://github.com/rust-lang/crates.io-index" 965source = "registry+https://github.com/rust-lang/crates.io-index"
845checksum = "936cae2873c940d92e697597c5eee105fb570cd5689c695806f672883653349b" 966checksum = "fb7f4c519df8c117855e19dd8cc851e89eb746fe7a73f0157e0d95fdec5369b0"
846dependencies = [ 967dependencies = [
847 "proc-macro2", 968 "proc-macro2",
848 "quote", 969 "quote",
@@ -881,6 +1002,15 @@ dependencies = [
881] 1002]
882 1003
883[[package]] 1004[[package]]
1005name = "toml"
1006version = "0.5.6"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
1009dependencies = [
1010 "serde",
1011]
1012
1013[[package]]
884name = "typetag" 1014name = "typetag"
885version = "0.1.5" 1015version = "0.1.5"
886source = "registry+https://github.com/rust-lang/crates.io-index" 1016source = "registry+https://github.com/rust-lang/crates.io-index"