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