diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 58 |
1 files changed, 58 insertions, 0 deletions
@@ -1,6 +1,37 @@ | |||
1 | # This file is automatically @generated by Cargo. | 1 | # This file is automatically @generated by Cargo. |
2 | # It is not intended for manual editing. | 2 | # It is not intended for manual editing. |
3 | [[package]] | 3 | [[package]] |
4 | name = "aes" | ||
5 | version = "0.6.0" | ||
6 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
7 | checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" | ||
8 | dependencies = [ | ||
9 | "aes-soft", | ||
10 | "aesni", | ||
11 | "cipher", | ||
12 | ] | ||
13 | |||
14 | [[package]] | ||
15 | name = "aes-soft" | ||
16 | version = "0.6.4" | ||
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
18 | checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" | ||
19 | dependencies = [ | ||
20 | "cipher", | ||
21 | "opaque-debug", | ||
22 | ] | ||
23 | |||
24 | [[package]] | ||
25 | name = "aesni" | ||
26 | version = "0.10.0" | ||
27 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
28 | checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" | ||
29 | dependencies = [ | ||
30 | "cipher", | ||
31 | "opaque-debug", | ||
32 | ] | ||
33 | |||
34 | [[package]] | ||
4 | name = "aho-corasick" | 35 | name = "aho-corasick" |
5 | version = "0.7.15" | 36 | version = "0.7.15" |
6 | source = "registry+https://github.com/rust-lang/crates.io-index" | 37 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -71,6 +102,22 @@ dependencies = [ | |||
71 | ] | 102 | ] |
72 | 103 | ||
73 | [[package]] | 104 | [[package]] |
105 | name = "block-modes" | ||
106 | version = "0.7.0" | ||
107 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
108 | checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0" | ||
109 | dependencies = [ | ||
110 | "block-padding", | ||
111 | "cipher", | ||
112 | ] | ||
113 | |||
114 | [[package]] | ||
115 | name = "block-padding" | ||
116 | version = "0.2.1" | ||
117 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
118 | checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" | ||
119 | |||
120 | [[package]] | ||
74 | name = "buf_redux" | 121 | name = "buf_redux" |
75 | version = "0.8.4" | 122 | version = "0.8.4" |
76 | source = "registry+https://github.com/rust-lang/crates.io-index" | 123 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -137,6 +184,15 @@ dependencies = [ | |||
137 | ] | 184 | ] |
138 | 185 | ||
139 | [[package]] | 186 | [[package]] |
187 | name = "cipher" | ||
188 | version = "0.2.5" | ||
189 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
190 | checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" | ||
191 | dependencies = [ | ||
192 | "generic-array", | ||
193 | ] | ||
194 | |||
195 | [[package]] | ||
140 | name = "cloudabi" | 196 | name = "cloudabi" |
141 | version = "0.0.3" | 197 | version = "0.0.3" |
142 | source = "registry+https://github.com/rust-lang/crates.io-index" | 198 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -319,8 +375,10 @@ dependencies = [ | |||
319 | name = "gradecoin" | 375 | name = "gradecoin" |
320 | version = "0.1.0" | 376 | version = "0.1.0" |
321 | dependencies = [ | 377 | dependencies = [ |
378 | "aes", | ||
322 | "base64 0.13.0", | 379 | "base64 0.13.0", |
323 | "blake2", | 380 | "blake2", |
381 | "block-modes", | ||
324 | "chrono", | 382 | "chrono", |
325 | "hex-literal", | 383 | "hex-literal", |
326 | "jsonwebtoken", | 384 | "jsonwebtoken", |