diff options
author | alpaylan | 2021-04-16 01:03:21 +0300 |
---|---|---|
committer | alpaylan | 2021-04-16 01:03:21 +0300 |
commit | b4212a90caa899785402c06d57216e75de0f1c88 (patch) | |
tree | 8adbe6eb6b451eee20d181f26ab771e0c5a920ee /Cargo.lock | |
parent | 82864341afc78b23b358cd775c70ffbfa0d0303f (diff) | |
parent | 72f8ae422eeb03ed87c7819af5d5e25758267b03 (diff) | |
download | gradecoin-b4212a90caa899785402c06d57216e75de0f1c88.tar.gz gradecoin-b4212a90caa899785402c06d57216e75de0f1c88.tar.bz2 gradecoin-b4212a90caa899785402c06d57216e75de0f1c88.zip |
Merge remote-tracking branch 'origin/main'
# Conflicts:
# src/schema.rs
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 384 |
1 files changed, 318 insertions, 66 deletions
@@ -41,14 +41,67 @@ dependencies = [ | |||
41 | ] | 41 | ] |
42 | 42 | ||
43 | [[package]] | 43 | [[package]] |
44 | name = "atty" | 44 | name = "anyhow" |
45 | version = "0.2.14" | 45 | version = "1.0.40" |
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b" | ||
48 | |||
49 | [[package]] | ||
50 | name = "arc-swap" | ||
51 | version = "0.4.8" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | 52 | source = "registry+https://github.com/rust-lang/crates.io-index" |
47 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | 53 | checksum = "dabe5a181f83789739c194cbe5a897dde195078fac08568d09221fd6137a7ba8" |
54 | |||
55 | [[package]] | ||
56 | name = "arrayvec" | ||
57 | version = "0.5.2" | ||
58 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
59 | checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" | ||
60 | |||
61 | [[package]] | ||
62 | name = "askama" | ||
63 | version = "0.10.5" | ||
64 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
65 | checksum = "d298738b6e47e1034e560e5afe63aa488fea34e25ec11b855a76f0d7b8e73134" | ||
48 | dependencies = [ | 66 | dependencies = [ |
49 | "hermit-abi", | 67 | "askama_derive", |
50 | "libc", | 68 | "askama_escape", |
51 | "winapi 0.3.9", | 69 | "askama_shared", |
70 | ] | ||
71 | |||
72 | [[package]] | ||
73 | name = "askama_derive" | ||
74 | version = "0.10.5" | ||
75 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
76 | checksum = "ca2925c4c290382f9d2fa3d1c1b6a63fa1427099721ecca4749b154cc9c25522" | ||
77 | dependencies = [ | ||
78 | "askama_shared", | ||
79 | "proc-macro2", | ||
80 | "syn", | ||
81 | ] | ||
82 | |||
83 | [[package]] | ||
84 | name = "askama_escape" | ||
85 | version = "0.10.1" | ||
86 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
87 | checksum = "90c108c1a94380c89d2215d0ac54ce09796823cca0fd91b299cfff3b33e346fb" | ||
88 | |||
89 | [[package]] | ||
90 | name = "askama_shared" | ||
91 | version = "0.11.1" | ||
92 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
93 | checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc" | ||
94 | dependencies = [ | ||
95 | "askama_escape", | ||
96 | "humansize", | ||
97 | "nom", | ||
98 | "num-traits", | ||
99 | "percent-encoding", | ||
100 | "proc-macro2", | ||
101 | "quote", | ||
102 | "serde", | ||
103 | "syn", | ||
104 | "toml", | ||
52 | ] | 105 | ] |
53 | 106 | ||
54 | [[package]] | 107 | [[package]] |
@@ -82,6 +135,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
82 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 135 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
83 | 136 | ||
84 | [[package]] | 137 | [[package]] |
138 | name = "bitvec" | ||
139 | version = "0.19.5" | ||
140 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
141 | checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321" | ||
142 | dependencies = [ | ||
143 | "funty", | ||
144 | "radium", | ||
145 | "tap", | ||
146 | "wyz", | ||
147 | ] | ||
148 | |||
149 | [[package]] | ||
85 | name = "blake2" | 150 | name = "blake2" |
86 | version = "0.9.1" | 151 | version = "0.9.1" |
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | 152 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -218,6 +283,17 @@ dependencies = [ | |||
218 | ] | 283 | ] |
219 | 284 | ||
220 | [[package]] | 285 | [[package]] |
286 | name = "derivative" | ||
287 | version = "2.2.0" | ||
288 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
289 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" | ||
290 | dependencies = [ | ||
291 | "proc-macro2", | ||
292 | "quote", | ||
293 | "syn", | ||
294 | ] | ||
295 | |||
296 | [[package]] | ||
221 | name = "digest" | 297 | name = "digest" |
222 | version = "0.9.0" | 298 | version = "0.9.0" |
223 | source = "registry+https://github.com/rust-lang/crates.io-index" | 299 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -233,19 +309,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
233 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" | 309 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" |
234 | 310 | ||
235 | [[package]] | 311 | [[package]] |
236 | name = "env_logger" | ||
237 | version = "0.6.2" | ||
238 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
239 | checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" | ||
240 | dependencies = [ | ||
241 | "atty", | ||
242 | "humantime", | ||
243 | "log", | ||
244 | "regex", | ||
245 | "termcolor", | ||
246 | ] | ||
247 | |||
248 | [[package]] | ||
249 | name = "fnv" | 312 | name = "fnv" |
250 | version = "1.0.7" | 313 | version = "1.0.7" |
251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 314 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -278,6 +341,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
278 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 341 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
279 | 342 | ||
280 | [[package]] | 343 | [[package]] |
344 | name = "funty" | ||
345 | version = "1.1.0" | ||
346 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
347 | checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" | ||
348 | |||
349 | [[package]] | ||
281 | name = "futures" | 350 | name = "futures" |
282 | version = "0.3.14" | 351 | version = "0.3.14" |
283 | source = "registry+https://github.com/rust-lang/crates.io-index" | 352 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -376,6 +445,7 @@ name = "gradecoin" | |||
376 | version = "0.1.0" | 445 | version = "0.1.0" |
377 | dependencies = [ | 446 | dependencies = [ |
378 | "aes", | 447 | "aes", |
448 | "askama", | ||
379 | "base64 0.13.0", | 449 | "base64 0.13.0", |
380 | "blake2", | 450 | "blake2", |
381 | "block-modes", | 451 | "block-modes", |
@@ -384,9 +454,9 @@ dependencies = [ | |||
384 | "jsonwebtoken", | 454 | "jsonwebtoken", |
385 | "lazy_static", | 455 | "lazy_static", |
386 | "log", | 456 | "log", |
457 | "log4rs", | ||
387 | "md-5", | 458 | "md-5", |
388 | "parking_lot", | 459 | "parking_lot 0.10.2", |
389 | "pretty_env_logger", | ||
390 | "rsa", | 460 | "rsa", |
391 | "serde", | 461 | "serde", |
392 | "serde_json", | 462 | "serde_json", |
@@ -448,15 +518,6 @@ dependencies = [ | |||
448 | ] | 518 | ] |
449 | 519 | ||
450 | [[package]] | 520 | [[package]] |
451 | name = "hermit-abi" | ||
452 | version = "0.1.18" | ||
453 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
454 | checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" | ||
455 | dependencies = [ | ||
456 | "libc", | ||
457 | ] | ||
458 | |||
459 | [[package]] | ||
460 | name = "hex-literal" | 521 | name = "hex-literal" |
461 | version = "0.3.1" | 522 | version = "0.3.1" |
462 | source = "registry+https://github.com/rust-lang/crates.io-index" | 523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -496,13 +557,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
496 | checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" | 557 | checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" |
497 | 558 | ||
498 | [[package]] | 559 | [[package]] |
560 | name = "humansize" | ||
561 | version = "1.1.0" | ||
562 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
563 | checksum = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" | ||
564 | |||
565 | [[package]] | ||
499 | name = "humantime" | 566 | name = "humantime" |
500 | version = "1.3.0" | 567 | version = "2.1.0" |
501 | source = "registry+https://github.com/rust-lang/crates.io-index" | 568 | source = "registry+https://github.com/rust-lang/crates.io-index" |
502 | checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" | 569 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" |
503 | dependencies = [ | ||
504 | "quick-error", | ||
505 | ] | ||
506 | 570 | ||
507 | [[package]] | 571 | [[package]] |
508 | name = "hyper" | 572 | name = "hyper" |
@@ -559,6 +623,15 @@ dependencies = [ | |||
559 | ] | 623 | ] |
560 | 624 | ||
561 | [[package]] | 625 | [[package]] |
626 | name = "instant" | ||
627 | version = "0.1.9" | ||
628 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
629 | checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" | ||
630 | dependencies = [ | ||
631 | "cfg-if 1.0.0", | ||
632 | ] | ||
633 | |||
634 | [[package]] | ||
562 | name = "iovec" | 635 | name = "iovec" |
563 | version = "0.1.4" | 636 | version = "0.1.4" |
564 | source = "registry+https://github.com/rust-lang/crates.io-index" | 637 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -616,6 +689,19 @@ dependencies = [ | |||
616 | ] | 689 | ] |
617 | 690 | ||
618 | [[package]] | 691 | [[package]] |
692 | name = "lexical-core" | ||
693 | version = "0.7.5" | ||
694 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
695 | checksum = "21f866863575d0e1d654fbeeabdc927292fdf862873dc3c96c6f753357e13374" | ||
696 | dependencies = [ | ||
697 | "arrayvec", | ||
698 | "bitflags", | ||
699 | "cfg-if 1.0.0", | ||
700 | "ryu", | ||
701 | "static_assertions", | ||
702 | ] | ||
703 | |||
704 | [[package]] | ||
619 | name = "libc" | 705 | name = "libc" |
620 | version = "0.2.93" | 706 | version = "0.2.93" |
621 | source = "registry+https://github.com/rust-lang/crates.io-index" | 707 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -628,6 +714,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
628 | checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" | 714 | checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" |
629 | 715 | ||
630 | [[package]] | 716 | [[package]] |
717 | name = "linked-hash-map" | ||
718 | version = "0.5.4" | ||
719 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
720 | checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" | ||
721 | |||
722 | [[package]] | ||
631 | name = "lock_api" | 723 | name = "lock_api" |
632 | version = "0.3.4" | 724 | version = "0.3.4" |
633 | source = "registry+https://github.com/rust-lang/crates.io-index" | 725 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -637,12 +729,55 @@ dependencies = [ | |||
637 | ] | 729 | ] |
638 | 730 | ||
639 | [[package]] | 731 | [[package]] |
732 | name = "lock_api" | ||
733 | version = "0.4.3" | ||
734 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
735 | checksum = "5a3c91c24eae6777794bb1997ad98bbb87daf92890acab859f7eaa4320333176" | ||
736 | dependencies = [ | ||
737 | "scopeguard", | ||
738 | ] | ||
739 | |||
740 | [[package]] | ||
640 | name = "log" | 741 | name = "log" |
641 | version = "0.4.14" | 742 | version = "0.4.14" |
642 | source = "registry+https://github.com/rust-lang/crates.io-index" | 743 | source = "registry+https://github.com/rust-lang/crates.io-index" |
643 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" | 744 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" |
644 | dependencies = [ | 745 | dependencies = [ |
645 | "cfg-if 1.0.0", | 746 | "cfg-if 1.0.0", |
747 | "serde", | ||
748 | ] | ||
749 | |||
750 | [[package]] | ||
751 | name = "log-mdc" | ||
752 | version = "0.1.0" | ||
753 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
754 | checksum = "a94d21414c1f4a51209ad204c1776a3d0765002c76c6abcb602a6f09f1e881c7" | ||
755 | |||
756 | [[package]] | ||
757 | name = "log4rs" | ||
758 | version = "1.0.0" | ||
759 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
760 | checksum = "d1572a880d1115ff867396eee7ae2bc924554225e67a0d3c85c745b3e60ca211" | ||
761 | dependencies = [ | ||
762 | "anyhow", | ||
763 | "arc-swap", | ||
764 | "chrono", | ||
765 | "derivative", | ||
766 | "fnv", | ||
767 | "humantime", | ||
768 | "libc", | ||
769 | "log", | ||
770 | "log-mdc", | ||
771 | "parking_lot 0.11.1", | ||
772 | "regex", | ||
773 | "serde", | ||
774 | "serde-value", | ||
775 | "serde_json", | ||
776 | "serde_yaml", | ||
777 | "thiserror", | ||
778 | "thread-id", | ||
779 | "typemap", | ||
780 | "winapi 0.3.9", | ||
646 | ] | 781 | ] |
647 | 782 | ||
648 | [[package]] | 783 | [[package]] |
@@ -745,6 +880,19 @@ dependencies = [ | |||
745 | ] | 880 | ] |
746 | 881 | ||
747 | [[package]] | 882 | [[package]] |
883 | name = "nom" | ||
884 | version = "6.1.2" | ||
885 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
886 | checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2" | ||
887 | dependencies = [ | ||
888 | "bitvec", | ||
889 | "funty", | ||
890 | "lexical-core", | ||
891 | "memchr", | ||
892 | "version_check", | ||
893 | ] | ||
894 | |||
895 | [[package]] | ||
748 | name = "num-bigint" | 896 | name = "num-bigint" |
749 | version = "0.2.6" | 897 | version = "0.2.6" |
750 | source = "registry+https://github.com/rust-lang/crates.io-index" | 898 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -828,13 +976,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
828 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" | 976 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" |
829 | 977 | ||
830 | [[package]] | 978 | [[package]] |
979 | name = "ordered-float" | ||
980 | version = "2.1.1" | ||
981 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
982 | checksum = "766f840da25490628d8e63e529cd21c014f6600c6b8517add12a6fa6167a6218" | ||
983 | dependencies = [ | ||
984 | "num-traits", | ||
985 | ] | ||
986 | |||
987 | [[package]] | ||
831 | name = "parking_lot" | 988 | name = "parking_lot" |
832 | version = "0.10.2" | 989 | version = "0.10.2" |
833 | source = "registry+https://github.com/rust-lang/crates.io-index" | 990 | source = "registry+https://github.com/rust-lang/crates.io-index" |
834 | checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e" | 991 | checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e" |
835 | dependencies = [ | 992 | dependencies = [ |
836 | "lock_api", | 993 | "lock_api 0.3.4", |
837 | "parking_lot_core", | 994 | "parking_lot_core 0.7.2", |
995 | ] | ||
996 | |||
997 | [[package]] | ||
998 | name = "parking_lot" | ||
999 | version = "0.11.1" | ||
1000 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1001 | checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" | ||
1002 | dependencies = [ | ||
1003 | "instant", | ||
1004 | "lock_api 0.4.3", | ||
1005 | "parking_lot_core 0.8.3", | ||
838 | ] | 1006 | ] |
839 | 1007 | ||
840 | [[package]] | 1008 | [[package]] |
@@ -852,6 +1020,20 @@ dependencies = [ | |||
852 | ] | 1020 | ] |
853 | 1021 | ||
854 | [[package]] | 1022 | [[package]] |
1023 | name = "parking_lot_core" | ||
1024 | version = "0.8.3" | ||
1025 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1026 | checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" | ||
1027 | dependencies = [ | ||
1028 | "cfg-if 1.0.0", | ||
1029 | "instant", | ||
1030 | "libc", | ||
1031 | "redox_syscall 0.2.6", | ||
1032 | "smallvec", | ||
1033 | "winapi 0.3.9", | ||
1034 | ] | ||
1035 | |||
1036 | [[package]] | ||
855 | name = "pem" | 1037 | name = "pem" |
856 | version = "0.8.3" | 1038 | version = "0.8.3" |
857 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1039 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -933,17 +1115,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
933 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" | 1115 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" |
934 | 1116 | ||
935 | [[package]] | 1117 | [[package]] |
936 | name = "pretty_env_logger" | ||
937 | version = "0.3.1" | ||
938 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
939 | checksum = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" | ||
940 | dependencies = [ | ||
941 | "chrono", | ||
942 | "env_logger", | ||
943 | "log", | ||
944 | ] | ||
945 | |||
946 | [[package]] | ||
947 | name = "proc-macro2" | 1118 | name = "proc-macro2" |
948 | version = "1.0.26" | 1119 | version = "1.0.26" |
949 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1120 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -968,6 +1139,12 @@ dependencies = [ | |||
968 | ] | 1139 | ] |
969 | 1140 | ||
970 | [[package]] | 1141 | [[package]] |
1142 | name = "radium" | ||
1143 | version = "0.5.3" | ||
1144 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1145 | checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8" | ||
1146 | |||
1147 | [[package]] | ||
971 | name = "rand" | 1148 | name = "rand" |
972 | version = "0.7.3" | 1149 | version = "0.7.3" |
973 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1150 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1158,6 +1335,16 @@ dependencies = [ | |||
1158 | ] | 1335 | ] |
1159 | 1336 | ||
1160 | [[package]] | 1337 | [[package]] |
1338 | name = "serde-value" | ||
1339 | version = "0.7.0" | ||
1340 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1341 | checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" | ||
1342 | dependencies = [ | ||
1343 | "ordered-float", | ||
1344 | "serde", | ||
1345 | ] | ||
1346 | |||
1347 | [[package]] | ||
1161 | name = "serde_derive" | 1348 | name = "serde_derive" |
1162 | version = "1.0.125" | 1349 | version = "1.0.125" |
1163 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1201,6 +1388,18 @@ dependencies = [ | |||
1201 | ] | 1388 | ] |
1202 | 1389 | ||
1203 | [[package]] | 1390 | [[package]] |
1391 | name = "serde_yaml" | ||
1392 | version = "0.8.17" | ||
1393 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1394 | checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23" | ||
1395 | dependencies = [ | ||
1396 | "dtoa", | ||
1397 | "linked-hash-map", | ||
1398 | "serde", | ||
1399 | "yaml-rust", | ||
1400 | ] | ||
1401 | |||
1402 | [[package]] | ||
1204 | name = "sha-1" | 1403 | name = "sha-1" |
1205 | version = "0.9.4" | 1404 | version = "0.9.4" |
1206 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1279,6 +1478,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1279 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" | 1478 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" |
1280 | 1479 | ||
1281 | [[package]] | 1480 | [[package]] |
1481 | name = "static_assertions" | ||
1482 | version = "1.1.0" | ||
1483 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1484 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" | ||
1485 | |||
1486 | [[package]] | ||
1282 | name = "subtle" | 1487 | name = "subtle" |
1283 | version = "2.4.0" | 1488 | version = "2.4.0" |
1284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1489 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1308,6 +1513,12 @@ dependencies = [ | |||
1308 | ] | 1513 | ] |
1309 | 1514 | ||
1310 | [[package]] | 1515 | [[package]] |
1516 | name = "tap" | ||
1517 | version = "1.0.1" | ||
1518 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1519 | checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" | ||
1520 | |||
1521 | [[package]] | ||
1311 | name = "tempfile" | 1522 | name = "tempfile" |
1312 | version = "3.2.0" | 1523 | version = "3.2.0" |
1313 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1524 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1322,15 +1533,6 @@ dependencies = [ | |||
1322 | ] | 1533 | ] |
1323 | 1534 | ||
1324 | [[package]] | 1535 | [[package]] |
1325 | name = "termcolor" | ||
1326 | version = "1.1.2" | ||
1327 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1328 | checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" | ||
1329 | dependencies = [ | ||
1330 | "winapi-util", | ||
1331 | ] | ||
1332 | |||
1333 | [[package]] | ||
1334 | name = "thiserror" | 1536 | name = "thiserror" |
1335 | version = "1.0.24" | 1537 | version = "1.0.24" |
1336 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1538 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1351,6 +1553,17 @@ dependencies = [ | |||
1351 | ] | 1553 | ] |
1352 | 1554 | ||
1353 | [[package]] | 1555 | [[package]] |
1556 | name = "thread-id" | ||
1557 | version = "3.3.0" | ||
1558 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1559 | checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" | ||
1560 | dependencies = [ | ||
1561 | "libc", | ||
1562 | "redox_syscall 0.1.57", | ||
1563 | "winapi 0.3.9", | ||
1564 | ] | ||
1565 | |||
1566 | [[package]] | ||
1354 | name = "time" | 1567 | name = "time" |
1355 | version = "0.1.43" | 1568 | version = "0.1.43" |
1356 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1569 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1432,6 +1645,15 @@ dependencies = [ | |||
1432 | ] | 1645 | ] |
1433 | 1646 | ||
1434 | [[package]] | 1647 | [[package]] |
1648 | name = "toml" | ||
1649 | version = "0.5.8" | ||
1650 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1651 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | ||
1652 | dependencies = [ | ||
1653 | "serde", | ||
1654 | ] | ||
1655 | |||
1656 | [[package]] | ||
1435 | name = "tower-service" | 1657 | name = "tower-service" |
1436 | version = "0.3.1" | 1658 | version = "0.3.1" |
1437 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1659 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1469,6 +1691,12 @@ dependencies = [ | |||
1469 | ] | 1691 | ] |
1470 | 1692 | ||
1471 | [[package]] | 1693 | [[package]] |
1694 | name = "traitobject" | ||
1695 | version = "0.1.0" | ||
1696 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1697 | checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" | ||
1698 | |||
1699 | [[package]] | ||
1472 | name = "try-lock" | 1700 | name = "try-lock" |
1473 | version = "0.2.3" | 1701 | version = "0.2.3" |
1474 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1702 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1503,6 +1731,15 @@ dependencies = [ | |||
1503 | ] | 1731 | ] |
1504 | 1732 | ||
1505 | [[package]] | 1733 | [[package]] |
1734 | name = "typemap" | ||
1735 | version = "0.3.3" | ||
1736 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1737 | checksum = "653be63c80a3296da5551e1bfd2cca35227e13cdd08c6668903ae2f4f77aa1f6" | ||
1738 | dependencies = [ | ||
1739 | "unsafe-any", | ||
1740 | ] | ||
1741 | |||
1742 | [[package]] | ||
1506 | name = "typenum" | 1743 | name = "typenum" |
1507 | version = "1.13.0" | 1744 | version = "1.13.0" |
1508 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1745 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1542,6 +1779,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1542 | checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" | 1779 | checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" |
1543 | 1780 | ||
1544 | [[package]] | 1781 | [[package]] |
1782 | name = "unsafe-any" | ||
1783 | version = "0.4.2" | ||
1784 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1785 | checksum = "f30360d7979f5e9c6e6cea48af192ea8fab4afb3cf72597154b8f08935bc9c7f" | ||
1786 | dependencies = [ | ||
1787 | "traitobject", | ||
1788 | ] | ||
1789 | |||
1790 | [[package]] | ||
1545 | name = "untrusted" | 1791 | name = "untrusted" |
1546 | version = "0.7.1" | 1792 | version = "0.7.1" |
1547 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1793 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1720,15 +1966,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1720 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 1966 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
1721 | 1967 | ||
1722 | [[package]] | 1968 | [[package]] |
1723 | name = "winapi-util" | ||
1724 | version = "0.1.5" | ||
1725 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1726 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
1727 | dependencies = [ | ||
1728 | "winapi 0.3.9", | ||
1729 | ] | ||
1730 | |||
1731 | [[package]] | ||
1732 | name = "winapi-x86_64-pc-windows-gnu" | 1969 | name = "winapi-x86_64-pc-windows-gnu" |
1733 | version = "0.4.0" | 1970 | version = "0.4.0" |
1734 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1971 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1745,6 +1982,21 @@ dependencies = [ | |||
1745 | ] | 1982 | ] |
1746 | 1983 | ||
1747 | [[package]] | 1984 | [[package]] |
1985 | name = "wyz" | ||
1986 | version = "0.2.0" | ||
1987 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1988 | checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" | ||
1989 | |||
1990 | [[package]] | ||
1991 | name = "yaml-rust" | ||
1992 | version = "0.4.5" | ||
1993 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1994 | checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" | ||
1995 | dependencies = [ | ||
1996 | "linked-hash-map", | ||
1997 | ] | ||
1998 | |||
1999 | [[package]] | ||
1748 | name = "zeroize" | 2000 | name = "zeroize" |
1749 | version = "1.2.0" | 2001 | version = "1.2.0" |
1750 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" |