aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock58
1 files changed, 58 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 03c6eb0..fa69ae2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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]]
4name = "aes"
5version = "0.6.0"
6source = "registry+https://github.com/rust-lang/crates.io-index"
7checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
8dependencies = [
9 "aes-soft",
10 "aesni",
11 "cipher",
12]
13
14[[package]]
15name = "aes-soft"
16version = "0.6.4"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
19dependencies = [
20 "cipher",
21 "opaque-debug",
22]
23
24[[package]]
25name = "aesni"
26version = "0.10.0"
27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
29dependencies = [
30 "cipher",
31 "opaque-debug",
32]
33
34[[package]]
4name = "aho-corasick" 35name = "aho-corasick"
5version = "0.7.15" 36version = "0.7.15"
6source = "registry+https://github.com/rust-lang/crates.io-index" 37source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -71,6 +102,22 @@ dependencies = [
71] 102]
72 103
73[[package]] 104[[package]]
105name = "block-modes"
106version = "0.7.0"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
109dependencies = [
110 "block-padding",
111 "cipher",
112]
113
114[[package]]
115name = "block-padding"
116version = "0.2.1"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
119
120[[package]]
74name = "buf_redux" 121name = "buf_redux"
75version = "0.8.4" 122version = "0.8.4"
76source = "registry+https://github.com/rust-lang/crates.io-index" 123source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -137,6 +184,15 @@ dependencies = [
137] 184]
138 185
139[[package]] 186[[package]]
187name = "cipher"
188version = "0.2.5"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
191dependencies = [
192 "generic-array",
193]
194
195[[package]]
140name = "cloudabi" 196name = "cloudabi"
141version = "0.0.3" 197version = "0.0.3"
142source = "registry+https://github.com/rust-lang/crates.io-index" 198source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -319,8 +375,10 @@ dependencies = [
319name = "gradecoin" 375name = "gradecoin"
320version = "0.1.0" 376version = "0.1.0"
321dependencies = [ 377dependencies = [
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",