diff options
author | Akshay <[email protected]> | 2020-07-23 17:53:59 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-07-23 17:53:59 +0100 |
commit | 91cb3ebf5b3af666b13f4821ff25f219fdccd7b9 (patch) | |
tree | c91d6cffd4d215b325e81bedfdcfdfdcea76a537 /Cargo.lock | |
parent | 02bba52346d948e90fbc1b351486f0f1307c243d (diff) | |
parent | d1d1aeb3d5aaa75f262467c5e683e76ce7a844ab (diff) |
Merge branch 'feature/windows' of https://github.com/filalex77/dijo into feature/windows
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 80 |
1 files changed, 30 insertions, 50 deletions
@@ -92,12 +92,6 @@ dependencies = [ | |||
92 | ] | 92 | ] |
93 | 93 | ||
94 | [[package]] | 94 | [[package]] |
95 | name = "cc" | ||
96 | version = "1.0.58" | ||
97 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
98 | checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518" | ||
99 | |||
100 | [[package]] | ||
101 | name = "cfg-if" | 95 | name = "cfg-if" |
102 | version = "0.1.10" | 96 | version = "0.1.10" |
103 | source = "registry+https://github.com/rust-lang/crates.io-index" | 97 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -167,12 +161,12 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" | |||
167 | 161 | ||
168 | [[package]] | 162 | [[package]] |
169 | name = "crossbeam-channel" | 163 | name = "crossbeam-channel" |
170 | version = "0.4.2" | 164 | version = "0.4.3" |
171 | source = "registry+https://github.com/rust-lang/crates.io-index" | 165 | source = "registry+https://github.com/rust-lang/crates.io-index" |
172 | checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061" | 166 | checksum = "09ee0cc8804d5393478d743b035099520087a5186f3b93fa58cec08fa62407b6" |
173 | dependencies = [ | 167 | dependencies = [ |
168 | "cfg-if", | ||
174 | "crossbeam-utils", | 169 | "crossbeam-utils", |
175 | "maybe-uninit", | ||
176 | ] | 170 | ] |
177 | 171 | ||
178 | [[package]] | 172 | [[package]] |
@@ -236,10 +230,8 @@ dependencies = [ | |||
236 | "lazy_static", | 230 | "lazy_static", |
237 | "libc", | 231 | "libc", |
238 | "log", | 232 | "log", |
239 | "maplit", | ||
240 | "ncurses", | ||
241 | "signal-hook", | 233 | "signal-hook", |
242 | "term_size", | 234 | "termion", |
243 | "unicode-segmentation", | 235 | "unicode-segmentation", |
244 | "unicode-width", | 236 | "unicode-width", |
245 | ] | 237 | ] |
@@ -303,7 +295,7 @@ dependencies = [ | |||
303 | 295 | ||
304 | [[package]] | 296 | [[package]] |
305 | name = "dijo" | 297 | name = "dijo" |
306 | version = "0.1.3" | 298 | version = "0.2.0" |
307 | dependencies = [ | 299 | dependencies = [ |
308 | "chrono", | 300 | "chrono", |
309 | "clap", | 301 | "clap", |
@@ -583,18 +575,6 @@ dependencies = [ | |||
583 | ] | 575 | ] |
584 | 576 | ||
585 | [[package]] | 577 | [[package]] |
586 | name = "maplit" | ||
587 | version = "1.0.2" | ||
588 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
589 | checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" | ||
590 | |||
591 | [[package]] | ||
592 | name = "maybe-uninit" | ||
593 | version = "2.0.0" | ||
594 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
595 | checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" | ||
596 | |||
597 | [[package]] | ||
598 | name = "mio" | 578 | name = "mio" |
599 | version = "0.6.22" | 579 | version = "0.6.22" |
600 | source = "registry+https://github.com/rust-lang/crates.io-index" | 580 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -662,17 +642,6 @@ dependencies = [ | |||
662 | ] | 642 | ] |
663 | 643 | ||
664 | [[package]] | 644 | [[package]] |
665 | name = "ncurses" | ||
666 | version = "5.99.0" | ||
667 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
668 | checksum = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82" | ||
669 | dependencies = [ | ||
670 | "cc", | ||
671 | "libc", | ||
672 | "pkg-config", | ||
673 | ] | ||
674 | |||
675 | [[package]] | ||
676 | name = "net2" | 645 | name = "net2" |
677 | version = "0.2.34" | 646 | version = "0.2.34" |
678 | source = "registry+https://github.com/rust-lang/crates.io-index" | 647 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -774,6 +743,12 @@ dependencies = [ | |||
774 | ] | 743 | ] |
775 | 744 | ||
776 | [[package]] | 745 | [[package]] |
746 | name = "numtoa" | ||
747 | version = "0.1.0" | ||
748 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
749 | checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" | ||
750 | |||
751 | [[package]] | ||
777 | name = "owning_ref" | 752 | name = "owning_ref" |
778 | version = "0.4.1" | 753 | version = "0.4.1" |
779 | source = "registry+https://github.com/rust-lang/crates.io-index" | 754 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -807,12 +782,6 @@ dependencies = [ | |||
807 | ] | 782 | ] |
808 | 783 | ||
809 | [[package]] | 784 | [[package]] |
810 | name = "pkg-config" | ||
811 | version = "0.3.18" | ||
812 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
813 | checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33" | ||
814 | |||
815 | [[package]] | ||
816 | name = "proc-macro-hack" | 785 | name = "proc-macro-hack" |
817 | version = "0.5.16" | 786 | version = "0.5.16" |
818 | source = "registry+https://github.com/rust-lang/crates.io-index" | 787 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -820,9 +789,9 @@ checksum = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4" | |||
820 | 789 | ||
821 | [[package]] | 790 | [[package]] |
822 | name = "proc-macro2" | 791 | name = "proc-macro2" |
823 | version = "1.0.18" | 792 | version = "1.0.19" |
824 | source = "registry+https://github.com/rust-lang/crates.io-index" | 793 | source = "registry+https://github.com/rust-lang/crates.io-index" |
825 | checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa" | 794 | checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12" |
826 | dependencies = [ | 795 | dependencies = [ |
827 | "unicode-xid", | 796 | "unicode-xid", |
828 | ] | 797 | ] |
@@ -843,6 +812,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
843 | checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" | 812 | checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" |
844 | 813 | ||
845 | [[package]] | 814 | [[package]] |
815 | name = "redox_termios" | ||
816 | version = "0.1.1" | ||
817 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
818 | checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" | ||
819 | dependencies = [ | ||
820 | "redox_syscall", | ||
821 | ] | ||
822 | |||
823 | [[package]] | ||
846 | name = "redox_users" | 824 | name = "redox_users" |
847 | version = "0.3.4" | 825 | version = "0.3.4" |
848 | source = "registry+https://github.com/rust-lang/crates.io-index" | 826 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -982,9 +960,9 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" | |||
982 | 960 | ||
983 | [[package]] | 961 | [[package]] |
984 | name = "syn" | 962 | name = "syn" |
985 | version = "1.0.34" | 963 | version = "1.0.35" |
986 | source = "registry+https://github.com/rust-lang/crates.io-index" | 964 | source = "registry+https://github.com/rust-lang/crates.io-index" |
987 | checksum = "936cae2873c940d92e697597c5eee105fb570cd5689c695806f672883653349b" | 965 | checksum = "fb7f4c519df8c117855e19dd8cc851e89eb746fe7a73f0157e0d95fdec5369b0" |
988 | dependencies = [ | 966 | dependencies = [ |
989 | "proc-macro2", | 967 | "proc-macro2", |
990 | "quote", | 968 | "quote", |
@@ -992,13 +970,15 @@ dependencies = [ | |||
992 | ] | 970 | ] |
993 | 971 | ||
994 | [[package]] | 972 | [[package]] |
995 | name = "term_size" | 973 | name = "termion" |
996 | version = "0.3.2" | 974 | version = "1.5.5" |
997 | source = "registry+https://github.com/rust-lang/crates.io-index" | 975 | source = "registry+https://github.com/rust-lang/crates.io-index" |
998 | checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9" | 976 | checksum = "c22cec9d8978d906be5ac94bceb5a010d885c626c4c8855721a4dbd20e3ac905" |
999 | dependencies = [ | 977 | dependencies = [ |
1000 | "libc", | 978 | "libc", |
1001 | "winapi 0.3.9", | 979 | "numtoa", |
980 | "redox_syscall", | ||
981 | "redox_termios", | ||
1002 | ] | 982 | ] |
1003 | 983 | ||
1004 | [[package]] | 984 | [[package]] |