diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 136 |
1 files changed, 136 insertions, 0 deletions
@@ -41,6 +41,58 @@ dependencies = [ | |||
41 | ] | 41 | ] |
42 | 42 | ||
43 | [[package]] | 43 | [[package]] |
44 | name = "arrayvec" | ||
45 | version = "0.5.2" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" | ||
48 | |||
49 | [[package]] | ||
50 | name = "askama" | ||
51 | version = "0.10.5" | ||
52 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
53 | checksum = "d298738b6e47e1034e560e5afe63aa488fea34e25ec11b855a76f0d7b8e73134" | ||
54 | dependencies = [ | ||
55 | "askama_derive", | ||
56 | "askama_escape", | ||
57 | "askama_shared", | ||
58 | ] | ||
59 | |||
60 | [[package]] | ||
61 | name = "askama_derive" | ||
62 | version = "0.10.5" | ||
63 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
64 | checksum = "ca2925c4c290382f9d2fa3d1c1b6a63fa1427099721ecca4749b154cc9c25522" | ||
65 | dependencies = [ | ||
66 | "askama_shared", | ||
67 | "proc-macro2", | ||
68 | "syn", | ||
69 | ] | ||
70 | |||
71 | [[package]] | ||
72 | name = "askama_escape" | ||
73 | version = "0.10.1" | ||
74 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
75 | checksum = "90c108c1a94380c89d2215d0ac54ce09796823cca0fd91b299cfff3b33e346fb" | ||
76 | |||
77 | [[package]] | ||
78 | name = "askama_shared" | ||
79 | version = "0.11.1" | ||
80 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
81 | checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc" | ||
82 | dependencies = [ | ||
83 | "askama_escape", | ||
84 | "humansize", | ||
85 | "nom", | ||
86 | "num-traits", | ||
87 | "percent-encoding", | ||
88 | "proc-macro2", | ||
89 | "quote", | ||
90 | "serde", | ||
91 | "syn", | ||
92 | "toml", | ||
93 | ] | ||
94 | |||
95 | [[package]] | ||
44 | name = "atty" | 96 | name = "atty" |
45 | version = "0.2.14" | 97 | version = "0.2.14" |
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | 98 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -82,6 +134,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
82 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 134 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
83 | 135 | ||
84 | [[package]] | 136 | [[package]] |
137 | name = "bitvec" | ||
138 | version = "0.19.5" | ||
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
140 | checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321" | ||
141 | dependencies = [ | ||
142 | "funty", | ||
143 | "radium", | ||
144 | "tap", | ||
145 | "wyz", | ||
146 | ] | ||
147 | |||
148 | [[package]] | ||
85 | name = "blake2" | 149 | name = "blake2" |
86 | version = "0.9.1" | 150 | version = "0.9.1" |
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | 151 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -278,6 +342,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
278 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 342 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
279 | 343 | ||
280 | [[package]] | 344 | [[package]] |
345 | name = "funty" | ||
346 | version = "1.1.0" | ||
347 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
348 | checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" | ||
349 | |||
350 | [[package]] | ||
281 | name = "futures" | 351 | name = "futures" |
282 | version = "0.3.14" | 352 | version = "0.3.14" |
283 | source = "registry+https://github.com/rust-lang/crates.io-index" | 353 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -376,6 +446,7 @@ name = "gradecoin" | |||
376 | version = "0.1.0" | 446 | version = "0.1.0" |
377 | dependencies = [ | 447 | dependencies = [ |
378 | "aes", | 448 | "aes", |
449 | "askama", | ||
379 | "base64 0.13.0", | 450 | "base64 0.13.0", |
380 | "blake2", | 451 | "blake2", |
381 | "block-modes", | 452 | "block-modes", |
@@ -496,6 +567,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
496 | checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" | 567 | checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" |
497 | 568 | ||
498 | [[package]] | 569 | [[package]] |
570 | name = "humansize" | ||
571 | version = "1.1.0" | ||
572 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
573 | checksum = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" | ||
574 | |||
575 | [[package]] | ||
499 | name = "humantime" | 576 | name = "humantime" |
500 | version = "1.3.0" | 577 | version = "1.3.0" |
501 | source = "registry+https://github.com/rust-lang/crates.io-index" | 578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -616,6 +693,19 @@ dependencies = [ | |||
616 | ] | 693 | ] |
617 | 694 | ||
618 | [[package]] | 695 | [[package]] |
696 | name = "lexical-core" | ||
697 | version = "0.7.5" | ||
698 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
699 | checksum = "21f866863575d0e1d654fbeeabdc927292fdf862873dc3c96c6f753357e13374" | ||
700 | dependencies = [ | ||
701 | "arrayvec", | ||
702 | "bitflags", | ||
703 | "cfg-if 1.0.0", | ||
704 | "ryu", | ||
705 | "static_assertions", | ||
706 | ] | ||
707 | |||
708 | [[package]] | ||
619 | name = "libc" | 709 | name = "libc" |
620 | version = "0.2.93" | 710 | version = "0.2.93" |
621 | source = "registry+https://github.com/rust-lang/crates.io-index" | 711 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -745,6 +835,19 @@ dependencies = [ | |||
745 | ] | 835 | ] |
746 | 836 | ||
747 | [[package]] | 837 | [[package]] |
838 | name = "nom" | ||
839 | version = "6.1.2" | ||
840 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
841 | checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2" | ||
842 | dependencies = [ | ||
843 | "bitvec", | ||
844 | "funty", | ||
845 | "lexical-core", | ||
846 | "memchr", | ||
847 | "version_check", | ||
848 | ] | ||
849 | |||
850 | [[package]] | ||
748 | name = "num-bigint" | 851 | name = "num-bigint" |
749 | version = "0.2.6" | 852 | version = "0.2.6" |
750 | source = "registry+https://github.com/rust-lang/crates.io-index" | 853 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -968,6 +1071,12 @@ dependencies = [ | |||
968 | ] | 1071 | ] |
969 | 1072 | ||
970 | [[package]] | 1073 | [[package]] |
1074 | name = "radium" | ||
1075 | version = "0.5.3" | ||
1076 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1077 | checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8" | ||
1078 | |||
1079 | [[package]] | ||
971 | name = "rand" | 1080 | name = "rand" |
972 | version = "0.7.3" | 1081 | version = "0.7.3" |
973 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1082 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1279,6 +1388,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1279 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" | 1388 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" |
1280 | 1389 | ||
1281 | [[package]] | 1390 | [[package]] |
1391 | name = "static_assertions" | ||
1392 | version = "1.1.0" | ||
1393 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1394 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" | ||
1395 | |||
1396 | [[package]] | ||
1282 | name = "subtle" | 1397 | name = "subtle" |
1283 | version = "2.4.0" | 1398 | version = "2.4.0" |
1284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1399 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1308,6 +1423,12 @@ dependencies = [ | |||
1308 | ] | 1423 | ] |
1309 | 1424 | ||
1310 | [[package]] | 1425 | [[package]] |
1426 | name = "tap" | ||
1427 | version = "1.0.1" | ||
1428 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1429 | checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" | ||
1430 | |||
1431 | [[package]] | ||
1311 | name = "tempfile" | 1432 | name = "tempfile" |
1312 | version = "3.2.0" | 1433 | version = "3.2.0" |
1313 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1434 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1432,6 +1553,15 @@ dependencies = [ | |||
1432 | ] | 1553 | ] |
1433 | 1554 | ||
1434 | [[package]] | 1555 | [[package]] |
1556 | name = "toml" | ||
1557 | version = "0.5.8" | ||
1558 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1559 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | ||
1560 | dependencies = [ | ||
1561 | "serde", | ||
1562 | ] | ||
1563 | |||
1564 | [[package]] | ||
1435 | name = "tower-service" | 1565 | name = "tower-service" |
1436 | version = "0.3.1" | 1566 | version = "0.3.1" |
1437 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1567 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1745,6 +1875,12 @@ dependencies = [ | |||
1745 | ] | 1875 | ] |
1746 | 1876 | ||
1747 | [[package]] | 1877 | [[package]] |
1878 | name = "wyz" | ||
1879 | version = "0.2.0" | ||
1880 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1881 | checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" | ||
1882 | |||
1883 | [[package]] | ||
1748 | name = "zeroize" | 1884 | name = "zeroize" |
1749 | version = "1.2.0" | 1885 | version = "1.2.0" |
1750 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1886 | source = "registry+https://github.com/rust-lang/crates.io-index" |