enquo-core 0.1.0-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/enquo-core.gemspec +40 -0
- data/ext/enquo/.gitignore +2 -0
- data/ext/enquo/Cargo.lock +894 -0
- data/ext/enquo/Cargo.toml +14 -0
- data/ext/enquo/extconf.rb +4 -0
- data/ext/enquo/src/lib.rs +139 -0
- data/lib/2.7/enquo.so +0 -0
- data/lib/3.0/enquo.so +0 -0
- data/lib/3.1/enquo.so +0 -0
- data/lib/enquo/field.rb +39 -0
- data/lib/enquo/root.rb +24 -0
- data/lib/enquo/root_key/static.rb +27 -0
- data/lib/enquo/root_key.rb +1 -0
- data/lib/enquo.rb +18 -0
- metadata +204 -0
@@ -0,0 +1,894 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "aead"
|
7
|
+
version = "0.5.1"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
|
10
|
+
dependencies = [
|
11
|
+
"crypto-common",
|
12
|
+
"generic-array",
|
13
|
+
]
|
14
|
+
|
15
|
+
[[package]]
|
16
|
+
name = "aes"
|
17
|
+
version = "0.8.1"
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
19
|
+
checksum = "bfe0133578c0986e1fe3dfcd4af1cc5b2dd6c3dbf534d69916ce16a2701d40ba"
|
20
|
+
dependencies = [
|
21
|
+
"cfg-if",
|
22
|
+
"cipher",
|
23
|
+
"cpufeatures",
|
24
|
+
]
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "aes-gcm-siv"
|
28
|
+
version = "0.11.1"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
|
31
|
+
dependencies = [
|
32
|
+
"aead",
|
33
|
+
"aes",
|
34
|
+
"cipher",
|
35
|
+
"ctr",
|
36
|
+
"polyval",
|
37
|
+
"subtle",
|
38
|
+
"zeroize",
|
39
|
+
]
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "aho-corasick"
|
43
|
+
version = "0.7.19"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
|
46
|
+
dependencies = [
|
47
|
+
"memchr",
|
48
|
+
]
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "ansi_term"
|
52
|
+
version = "0.12.1"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
55
|
+
dependencies = [
|
56
|
+
"winapi",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "atty"
|
61
|
+
version = "0.2.14"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
64
|
+
dependencies = [
|
65
|
+
"hermit-abi",
|
66
|
+
"libc",
|
67
|
+
"winapi",
|
68
|
+
]
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "autocfg"
|
72
|
+
version = "1.1.0"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "bindgen"
|
78
|
+
version = "0.59.2"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
|
81
|
+
dependencies = [
|
82
|
+
"bitflags",
|
83
|
+
"cexpr",
|
84
|
+
"clang-sys",
|
85
|
+
"clap",
|
86
|
+
"env_logger",
|
87
|
+
"lazy_static",
|
88
|
+
"lazycell",
|
89
|
+
"log",
|
90
|
+
"peeking_take_while",
|
91
|
+
"proc-macro2",
|
92
|
+
"quote",
|
93
|
+
"regex",
|
94
|
+
"rustc-hash",
|
95
|
+
"shlex",
|
96
|
+
"which",
|
97
|
+
]
|
98
|
+
|
99
|
+
[[package]]
|
100
|
+
name = "bitflags"
|
101
|
+
version = "1.3.2"
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
104
|
+
|
105
|
+
[[package]]
|
106
|
+
name = "block-buffer"
|
107
|
+
version = "0.10.3"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
110
|
+
dependencies = [
|
111
|
+
"generic-array",
|
112
|
+
]
|
113
|
+
|
114
|
+
[[package]]
|
115
|
+
name = "cexpr"
|
116
|
+
version = "0.6.0"
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
118
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
119
|
+
dependencies = [
|
120
|
+
"nom",
|
121
|
+
]
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "cfg-if"
|
125
|
+
version = "1.0.0"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
128
|
+
|
129
|
+
[[package]]
|
130
|
+
name = "ciborium"
|
131
|
+
version = "0.2.0"
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
+
checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f"
|
134
|
+
dependencies = [
|
135
|
+
"ciborium-io",
|
136
|
+
"ciborium-ll",
|
137
|
+
"serde",
|
138
|
+
]
|
139
|
+
|
140
|
+
[[package]]
|
141
|
+
name = "ciborium-io"
|
142
|
+
version = "0.2.0"
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
144
|
+
checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369"
|
145
|
+
|
146
|
+
[[package]]
|
147
|
+
name = "ciborium-ll"
|
148
|
+
version = "0.2.0"
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
+
checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
|
151
|
+
dependencies = [
|
152
|
+
"ciborium-io",
|
153
|
+
"half",
|
154
|
+
]
|
155
|
+
|
156
|
+
[[package]]
|
157
|
+
name = "cipher"
|
158
|
+
version = "0.4.3"
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
160
|
+
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
|
161
|
+
dependencies = [
|
162
|
+
"crypto-common",
|
163
|
+
"inout",
|
164
|
+
]
|
165
|
+
|
166
|
+
[[package]]
|
167
|
+
name = "clang-sys"
|
168
|
+
version = "1.3.3"
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
170
|
+
checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
|
171
|
+
dependencies = [
|
172
|
+
"glob",
|
173
|
+
"libc",
|
174
|
+
"libloading",
|
175
|
+
]
|
176
|
+
|
177
|
+
[[package]]
|
178
|
+
name = "clap"
|
179
|
+
version = "2.34.0"
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
181
|
+
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
|
182
|
+
dependencies = [
|
183
|
+
"ansi_term",
|
184
|
+
"atty",
|
185
|
+
"bitflags",
|
186
|
+
"strsim",
|
187
|
+
"textwrap",
|
188
|
+
"unicode-width",
|
189
|
+
"vec_map",
|
190
|
+
]
|
191
|
+
|
192
|
+
[[package]]
|
193
|
+
name = "cmac"
|
194
|
+
version = "0.7.1"
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
+
checksum = "606383658416244b8dc4b36f864ec1f86cb922b95c41a908fd07aeb01cad06fa"
|
197
|
+
dependencies = [
|
198
|
+
"cipher",
|
199
|
+
"dbl",
|
200
|
+
"digest",
|
201
|
+
]
|
202
|
+
|
203
|
+
[[package]]
|
204
|
+
name = "cpufeatures"
|
205
|
+
version = "0.2.5"
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
+
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
208
|
+
dependencies = [
|
209
|
+
"libc",
|
210
|
+
]
|
211
|
+
|
212
|
+
[[package]]
|
213
|
+
name = "cretrit"
|
214
|
+
version = "0.1.0"
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
216
|
+
checksum = "ff2fbde7be9f8313f07f6153529dd9182e7bb51976948e857c4329d407361424"
|
217
|
+
dependencies = [
|
218
|
+
"aes",
|
219
|
+
"cmac",
|
220
|
+
"hmac",
|
221
|
+
"num",
|
222
|
+
"rand",
|
223
|
+
"rand_chacha",
|
224
|
+
"sha2",
|
225
|
+
"thiserror",
|
226
|
+
"zeroize",
|
227
|
+
]
|
228
|
+
|
229
|
+
[[package]]
|
230
|
+
name = "crypto-common"
|
231
|
+
version = "0.1.6"
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
233
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
234
|
+
dependencies = [
|
235
|
+
"generic-array",
|
236
|
+
"rand_core",
|
237
|
+
"typenum",
|
238
|
+
]
|
239
|
+
|
240
|
+
[[package]]
|
241
|
+
name = "ctr"
|
242
|
+
version = "0.9.1"
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
244
|
+
checksum = "0d14f329cfbaf5d0e06b5e87fff7e265d2673c5ea7d2c27691a2c107db1442a0"
|
245
|
+
dependencies = [
|
246
|
+
"cipher",
|
247
|
+
]
|
248
|
+
|
249
|
+
[[package]]
|
250
|
+
name = "dbl"
|
251
|
+
version = "0.3.2"
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
+
checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
|
254
|
+
dependencies = [
|
255
|
+
"generic-array",
|
256
|
+
]
|
257
|
+
|
258
|
+
[[package]]
|
259
|
+
name = "digest"
|
260
|
+
version = "0.10.3"
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
+
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
|
263
|
+
dependencies = [
|
264
|
+
"block-buffer",
|
265
|
+
"crypto-common",
|
266
|
+
"subtle",
|
267
|
+
]
|
268
|
+
|
269
|
+
[[package]]
|
270
|
+
name = "either"
|
271
|
+
version = "1.8.0"
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
273
|
+
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
274
|
+
|
275
|
+
[[package]]
|
276
|
+
name = "enquo"
|
277
|
+
version = "0.0.0"
|
278
|
+
dependencies = [
|
279
|
+
"enquo-core",
|
280
|
+
"lazy_static",
|
281
|
+
"rb-sys",
|
282
|
+
"rutie",
|
283
|
+
"serde_json",
|
284
|
+
]
|
285
|
+
|
286
|
+
[[package]]
|
287
|
+
name = "enquo-core"
|
288
|
+
version = "0.0.0-git"
|
289
|
+
dependencies = [
|
290
|
+
"aes-gcm-siv",
|
291
|
+
"ciborium",
|
292
|
+
"cretrit",
|
293
|
+
"hmac",
|
294
|
+
"rand_chacha",
|
295
|
+
"serde",
|
296
|
+
"sha2",
|
297
|
+
"thiserror",
|
298
|
+
]
|
299
|
+
|
300
|
+
[[package]]
|
301
|
+
name = "env_logger"
|
302
|
+
version = "0.9.0"
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
304
|
+
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
|
305
|
+
dependencies = [
|
306
|
+
"atty",
|
307
|
+
"humantime",
|
308
|
+
"log",
|
309
|
+
"regex",
|
310
|
+
"termcolor",
|
311
|
+
]
|
312
|
+
|
313
|
+
[[package]]
|
314
|
+
name = "generic-array"
|
315
|
+
version = "0.14.6"
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
+
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
318
|
+
dependencies = [
|
319
|
+
"typenum",
|
320
|
+
"version_check",
|
321
|
+
]
|
322
|
+
|
323
|
+
[[package]]
|
324
|
+
name = "getrandom"
|
325
|
+
version = "0.2.7"
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
+
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
|
328
|
+
dependencies = [
|
329
|
+
"cfg-if",
|
330
|
+
"libc",
|
331
|
+
"wasi",
|
332
|
+
]
|
333
|
+
|
334
|
+
[[package]]
|
335
|
+
name = "glob"
|
336
|
+
version = "0.3.0"
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
338
|
+
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
339
|
+
|
340
|
+
[[package]]
|
341
|
+
name = "half"
|
342
|
+
version = "1.8.2"
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
344
|
+
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
|
345
|
+
|
346
|
+
[[package]]
|
347
|
+
name = "hermit-abi"
|
348
|
+
version = "0.1.19"
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
350
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
351
|
+
dependencies = [
|
352
|
+
"libc",
|
353
|
+
]
|
354
|
+
|
355
|
+
[[package]]
|
356
|
+
name = "hmac"
|
357
|
+
version = "0.12.1"
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
359
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
360
|
+
dependencies = [
|
361
|
+
"digest",
|
362
|
+
]
|
363
|
+
|
364
|
+
[[package]]
|
365
|
+
name = "humantime"
|
366
|
+
version = "2.1.0"
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
368
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
369
|
+
|
370
|
+
[[package]]
|
371
|
+
name = "inout"
|
372
|
+
version = "0.1.3"
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
|
375
|
+
dependencies = [
|
376
|
+
"generic-array",
|
377
|
+
]
|
378
|
+
|
379
|
+
[[package]]
|
380
|
+
name = "itoa"
|
381
|
+
version = "1.0.3"
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
+
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
|
384
|
+
|
385
|
+
[[package]]
|
386
|
+
name = "lazy_static"
|
387
|
+
version = "1.4.0"
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
390
|
+
|
391
|
+
[[package]]
|
392
|
+
name = "lazycell"
|
393
|
+
version = "1.3.0"
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
396
|
+
|
397
|
+
[[package]]
|
398
|
+
name = "libc"
|
399
|
+
version = "0.2.132"
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
+
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
|
402
|
+
|
403
|
+
[[package]]
|
404
|
+
name = "libloading"
|
405
|
+
version = "0.7.3"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
|
408
|
+
dependencies = [
|
409
|
+
"cfg-if",
|
410
|
+
"winapi",
|
411
|
+
]
|
412
|
+
|
413
|
+
[[package]]
|
414
|
+
name = "log"
|
415
|
+
version = "0.4.17"
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
418
|
+
dependencies = [
|
419
|
+
"cfg-if",
|
420
|
+
]
|
421
|
+
|
422
|
+
[[package]]
|
423
|
+
name = "memchr"
|
424
|
+
version = "2.5.0"
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
427
|
+
|
428
|
+
[[package]]
|
429
|
+
name = "minimal-lexical"
|
430
|
+
version = "0.2.1"
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
433
|
+
|
434
|
+
[[package]]
|
435
|
+
name = "nom"
|
436
|
+
version = "7.1.1"
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
+
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
439
|
+
dependencies = [
|
440
|
+
"memchr",
|
441
|
+
"minimal-lexical",
|
442
|
+
]
|
443
|
+
|
444
|
+
[[package]]
|
445
|
+
name = "num"
|
446
|
+
version = "0.3.1"
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
+
checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f"
|
449
|
+
dependencies = [
|
450
|
+
"num-bigint",
|
451
|
+
"num-complex",
|
452
|
+
"num-integer",
|
453
|
+
"num-iter",
|
454
|
+
"num-rational",
|
455
|
+
"num-traits",
|
456
|
+
]
|
457
|
+
|
458
|
+
[[package]]
|
459
|
+
name = "num-bigint"
|
460
|
+
version = "0.3.3"
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
462
|
+
checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3"
|
463
|
+
dependencies = [
|
464
|
+
"autocfg",
|
465
|
+
"num-integer",
|
466
|
+
"num-traits",
|
467
|
+
]
|
468
|
+
|
469
|
+
[[package]]
|
470
|
+
name = "num-complex"
|
471
|
+
version = "0.3.1"
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
+
checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5"
|
474
|
+
dependencies = [
|
475
|
+
"num-traits",
|
476
|
+
]
|
477
|
+
|
478
|
+
[[package]]
|
479
|
+
name = "num-integer"
|
480
|
+
version = "0.1.45"
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
483
|
+
dependencies = [
|
484
|
+
"autocfg",
|
485
|
+
"num-traits",
|
486
|
+
]
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "num-iter"
|
490
|
+
version = "0.1.43"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
493
|
+
dependencies = [
|
494
|
+
"autocfg",
|
495
|
+
"num-integer",
|
496
|
+
"num-traits",
|
497
|
+
]
|
498
|
+
|
499
|
+
[[package]]
|
500
|
+
name = "num-rational"
|
501
|
+
version = "0.3.2"
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
503
|
+
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
|
504
|
+
dependencies = [
|
505
|
+
"autocfg",
|
506
|
+
"num-bigint",
|
507
|
+
"num-integer",
|
508
|
+
"num-traits",
|
509
|
+
]
|
510
|
+
|
511
|
+
[[package]]
|
512
|
+
name = "num-traits"
|
513
|
+
version = "0.2.15"
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
515
|
+
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
516
|
+
dependencies = [
|
517
|
+
"autocfg",
|
518
|
+
]
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "once_cell"
|
522
|
+
version = "1.14.0"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
|
525
|
+
|
526
|
+
[[package]]
|
527
|
+
name = "opaque-debug"
|
528
|
+
version = "0.3.0"
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
530
|
+
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "peeking_take_while"
|
534
|
+
version = "0.1.2"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
537
|
+
|
538
|
+
[[package]]
|
539
|
+
name = "pkg-config"
|
540
|
+
version = "0.3.25"
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
542
|
+
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "polyval"
|
546
|
+
version = "0.6.0"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
|
549
|
+
dependencies = [
|
550
|
+
"cfg-if",
|
551
|
+
"cpufeatures",
|
552
|
+
"opaque-debug",
|
553
|
+
"universal-hash",
|
554
|
+
]
|
555
|
+
|
556
|
+
[[package]]
|
557
|
+
name = "ppv-lite86"
|
558
|
+
version = "0.2.16"
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
560
|
+
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "proc-macro2"
|
564
|
+
version = "1.0.43"
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
+
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
|
567
|
+
dependencies = [
|
568
|
+
"unicode-ident",
|
569
|
+
]
|
570
|
+
|
571
|
+
[[package]]
|
572
|
+
name = "quote"
|
573
|
+
version = "1.0.21"
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
+
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
576
|
+
dependencies = [
|
577
|
+
"proc-macro2",
|
578
|
+
]
|
579
|
+
|
580
|
+
[[package]]
|
581
|
+
name = "rand"
|
582
|
+
version = "0.8.5"
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
585
|
+
dependencies = [
|
586
|
+
"libc",
|
587
|
+
"rand_chacha",
|
588
|
+
"rand_core",
|
589
|
+
]
|
590
|
+
|
591
|
+
[[package]]
|
592
|
+
name = "rand_chacha"
|
593
|
+
version = "0.3.1"
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
595
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
596
|
+
dependencies = [
|
597
|
+
"ppv-lite86",
|
598
|
+
"rand_core",
|
599
|
+
]
|
600
|
+
|
601
|
+
[[package]]
|
602
|
+
name = "rand_core"
|
603
|
+
version = "0.6.3"
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
+
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
606
|
+
dependencies = [
|
607
|
+
"getrandom",
|
608
|
+
]
|
609
|
+
|
610
|
+
[[package]]
|
611
|
+
name = "rb-sys"
|
612
|
+
version = "0.8.1"
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
+
checksum = "4db52af35291b64ce86f23f755b4576c20e3063b517269252b2f8cc883ca00e6"
|
615
|
+
dependencies = [
|
616
|
+
"bindgen",
|
617
|
+
"libc",
|
618
|
+
"pkg-config",
|
619
|
+
]
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "regex"
|
623
|
+
version = "1.6.0"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
|
626
|
+
dependencies = [
|
627
|
+
"aho-corasick",
|
628
|
+
"memchr",
|
629
|
+
"regex-syntax",
|
630
|
+
]
|
631
|
+
|
632
|
+
[[package]]
|
633
|
+
name = "regex-syntax"
|
634
|
+
version = "0.6.27"
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
+
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
637
|
+
|
638
|
+
[[package]]
|
639
|
+
name = "rustc-hash"
|
640
|
+
version = "1.1.0"
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
643
|
+
|
644
|
+
[[package]]
|
645
|
+
name = "rutie"
|
646
|
+
version = "0.8.4"
|
647
|
+
source = "git+https://github.com/mpalmer/rutie?branch=rb_sys#c7b16b35d20c688b32b3f4092ddc6202dd9e2433"
|
648
|
+
dependencies = [
|
649
|
+
"lazy_static",
|
650
|
+
"libc",
|
651
|
+
"rb-sys",
|
652
|
+
]
|
653
|
+
|
654
|
+
[[package]]
|
655
|
+
name = "ryu"
|
656
|
+
version = "1.0.11"
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
+
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
659
|
+
|
660
|
+
[[package]]
|
661
|
+
name = "serde"
|
662
|
+
version = "1.0.144"
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
664
|
+
checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
|
665
|
+
dependencies = [
|
666
|
+
"serde_derive",
|
667
|
+
]
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "serde_derive"
|
671
|
+
version = "1.0.144"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
|
674
|
+
dependencies = [
|
675
|
+
"proc-macro2",
|
676
|
+
"quote",
|
677
|
+
"syn",
|
678
|
+
]
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "serde_json"
|
682
|
+
version = "1.0.85"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
|
685
|
+
dependencies = [
|
686
|
+
"itoa",
|
687
|
+
"ryu",
|
688
|
+
"serde",
|
689
|
+
]
|
690
|
+
|
691
|
+
[[package]]
|
692
|
+
name = "sha2"
|
693
|
+
version = "0.10.5"
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
|
+
checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5"
|
696
|
+
dependencies = [
|
697
|
+
"cfg-if",
|
698
|
+
"cpufeatures",
|
699
|
+
"digest",
|
700
|
+
]
|
701
|
+
|
702
|
+
[[package]]
|
703
|
+
name = "shlex"
|
704
|
+
version = "1.1.0"
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
706
|
+
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
707
|
+
|
708
|
+
[[package]]
|
709
|
+
name = "strsim"
|
710
|
+
version = "0.8.0"
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
+
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
713
|
+
|
714
|
+
[[package]]
|
715
|
+
name = "subtle"
|
716
|
+
version = "2.4.1"
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
+
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
719
|
+
|
720
|
+
[[package]]
|
721
|
+
name = "syn"
|
722
|
+
version = "1.0.99"
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
+
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
|
725
|
+
dependencies = [
|
726
|
+
"proc-macro2",
|
727
|
+
"quote",
|
728
|
+
"unicode-ident",
|
729
|
+
]
|
730
|
+
|
731
|
+
[[package]]
|
732
|
+
name = "synstructure"
|
733
|
+
version = "0.12.6"
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
|
736
|
+
dependencies = [
|
737
|
+
"proc-macro2",
|
738
|
+
"quote",
|
739
|
+
"syn",
|
740
|
+
"unicode-xid",
|
741
|
+
]
|
742
|
+
|
743
|
+
[[package]]
|
744
|
+
name = "termcolor"
|
745
|
+
version = "1.1.3"
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
+
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
748
|
+
dependencies = [
|
749
|
+
"winapi-util",
|
750
|
+
]
|
751
|
+
|
752
|
+
[[package]]
|
753
|
+
name = "textwrap"
|
754
|
+
version = "0.11.0"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
757
|
+
dependencies = [
|
758
|
+
"unicode-width",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "thiserror"
|
763
|
+
version = "1.0.34"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252"
|
766
|
+
dependencies = [
|
767
|
+
"thiserror-impl",
|
768
|
+
]
|
769
|
+
|
770
|
+
[[package]]
|
771
|
+
name = "thiserror-impl"
|
772
|
+
version = "1.0.34"
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
774
|
+
checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487"
|
775
|
+
dependencies = [
|
776
|
+
"proc-macro2",
|
777
|
+
"quote",
|
778
|
+
"syn",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "typenum"
|
783
|
+
version = "1.15.0"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "unicode-ident"
|
789
|
+
version = "1.0.3"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "unicode-width"
|
795
|
+
version = "0.1.9"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
798
|
+
|
799
|
+
[[package]]
|
800
|
+
name = "unicode-xid"
|
801
|
+
version = "0.2.4"
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
803
|
+
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
804
|
+
|
805
|
+
[[package]]
|
806
|
+
name = "universal-hash"
|
807
|
+
version = "0.5.0"
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
+
checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
|
810
|
+
dependencies = [
|
811
|
+
"crypto-common",
|
812
|
+
"subtle",
|
813
|
+
]
|
814
|
+
|
815
|
+
[[package]]
|
816
|
+
name = "vec_map"
|
817
|
+
version = "0.8.2"
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
+
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
820
|
+
|
821
|
+
[[package]]
|
822
|
+
name = "version_check"
|
823
|
+
version = "0.9.4"
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
826
|
+
|
827
|
+
[[package]]
|
828
|
+
name = "wasi"
|
829
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
831
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
832
|
+
|
833
|
+
[[package]]
|
834
|
+
name = "which"
|
835
|
+
version = "4.3.0"
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
837
|
+
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
|
838
|
+
dependencies = [
|
839
|
+
"either",
|
840
|
+
"libc",
|
841
|
+
"once_cell",
|
842
|
+
]
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "winapi"
|
846
|
+
version = "0.3.9"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
849
|
+
dependencies = [
|
850
|
+
"winapi-i686-pc-windows-gnu",
|
851
|
+
"winapi-x86_64-pc-windows-gnu",
|
852
|
+
]
|
853
|
+
|
854
|
+
[[package]]
|
855
|
+
name = "winapi-i686-pc-windows-gnu"
|
856
|
+
version = "0.4.0"
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "winapi-util"
|
862
|
+
version = "0.1.5"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
865
|
+
dependencies = [
|
866
|
+
"winapi",
|
867
|
+
]
|
868
|
+
|
869
|
+
[[package]]
|
870
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
871
|
+
version = "0.4.0"
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
874
|
+
|
875
|
+
[[package]]
|
876
|
+
name = "zeroize"
|
877
|
+
version = "1.5.7"
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
879
|
+
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
|
880
|
+
dependencies = [
|
881
|
+
"zeroize_derive",
|
882
|
+
]
|
883
|
+
|
884
|
+
[[package]]
|
885
|
+
name = "zeroize_derive"
|
886
|
+
version = "1.3.2"
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
+
checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
|
889
|
+
dependencies = [
|
890
|
+
"proc-macro2",
|
891
|
+
"quote",
|
892
|
+
"syn",
|
893
|
+
"synstructure",
|
894
|
+
]
|