dotenvx 0.0.2 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Cargo.lock ADDED
@@ -0,0 +1,953 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.10.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "aho-corasick"
42
+ version = "1.1.5"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
45
+ dependencies = [
46
+ "memchr",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "base16ct"
51
+ version = "0.2.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
54
+
55
+ [[package]]
56
+ name = "base64"
57
+ version = "0.22.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
60
+
61
+ [[package]]
62
+ name = "bindgen"
63
+ version = "0.72.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
66
+ dependencies = [
67
+ "bitflags",
68
+ "cexpr",
69
+ "clang-sys",
70
+ "itertools",
71
+ "proc-macro2",
72
+ "quote",
73
+ "regex",
74
+ "rustc-hash",
75
+ "shlex",
76
+ "syn 2.0.119",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "bitflags"
81
+ version = "2.13.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
84
+
85
+ [[package]]
86
+ name = "block-buffer"
87
+ version = "0.10.4"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
90
+ dependencies = [
91
+ "generic-array",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bumpalo"
96
+ version = "3.20.3"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
99
+
100
+ [[package]]
101
+ name = "cexpr"
102
+ version = "0.6.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
105
+ dependencies = [
106
+ "nom",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "cfg-if"
111
+ version = "1.0.4"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
114
+
115
+ [[package]]
116
+ name = "cipher"
117
+ version = "0.4.4"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
120
+ dependencies = [
121
+ "crypto-common",
122
+ "inout",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "clang-sys"
127
+ version = "1.9.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
130
+ dependencies = [
131
+ "glob",
132
+ "libc",
133
+ "libloading",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "const-oid"
138
+ version = "0.9.6"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
141
+
142
+ [[package]]
143
+ name = "cpufeatures"
144
+ version = "0.2.17"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
147
+ dependencies = [
148
+ "libc",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "critical-section"
153
+ version = "1.2.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
156
+
157
+ [[package]]
158
+ name = "crypto-bigint"
159
+ version = "0.5.5"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
162
+ dependencies = [
163
+ "generic-array",
164
+ "rand_core",
165
+ "subtle",
166
+ "zeroize",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "crypto-common"
171
+ version = "0.1.7"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
174
+ dependencies = [
175
+ "generic-array",
176
+ "typenum",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "ctr"
181
+ version = "0.9.2"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
184
+ dependencies = [
185
+ "cipher",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "der"
190
+ version = "0.7.10"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
193
+ dependencies = [
194
+ "const-oid",
195
+ "zeroize",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "digest"
200
+ version = "0.10.7"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
203
+ dependencies = [
204
+ "block-buffer",
205
+ "crypto-common",
206
+ "subtle",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "dotenvx-primitives"
211
+ version = "2.2.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "4db07437b4c9f5aa5519906e629b40239604fd8e0aa1a2ccaf51e82614ebd4e7"
214
+ dependencies = [
215
+ "base64",
216
+ "ecies",
217
+ "hex",
218
+ "rand",
219
+ "regex",
220
+ "zeroize",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "dotenvx_native"
225
+ version = "4.0.3"
226
+ dependencies = [
227
+ "dotenvx-primitives",
228
+ "magnus",
229
+ "rb-sys",
230
+ "serde",
231
+ "serde_json",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "ecies"
236
+ version = "0.2.11"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "8a2df85e2b13a5f7fa61e7f0ee776acfe74da80bf2fb1bcde2725af19c197b33"
239
+ dependencies = [
240
+ "aes-gcm",
241
+ "getrandom",
242
+ "hkdf",
243
+ "k256",
244
+ "lock_api",
245
+ "once_cell",
246
+ "parking_lot",
247
+ "rand_core",
248
+ "sha2",
249
+ "typenum",
250
+ "wasm-bindgen",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "either"
255
+ version = "1.18.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
258
+
259
+ [[package]]
260
+ name = "elliptic-curve"
261
+ version = "0.13.8"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
264
+ dependencies = [
265
+ "base16ct",
266
+ "crypto-bigint",
267
+ "ff",
268
+ "generic-array",
269
+ "group",
270
+ "rand_core",
271
+ "sec1",
272
+ "subtle",
273
+ "zeroize",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "ff"
278
+ version = "0.13.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
281
+ dependencies = [
282
+ "rand_core",
283
+ "subtle",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "futures-core"
288
+ version = "0.3.34"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
291
+
292
+ [[package]]
293
+ name = "futures-task"
294
+ version = "0.3.34"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
297
+
298
+ [[package]]
299
+ name = "futures-util"
300
+ version = "0.3.34"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
303
+ dependencies = [
304
+ "futures-core",
305
+ "futures-task",
306
+ "pin-project-lite",
307
+ "slab",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "generic-array"
312
+ version = "0.14.7"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
315
+ dependencies = [
316
+ "typenum",
317
+ "version_check",
318
+ "zeroize",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "getrandom"
323
+ version = "0.2.17"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
326
+ dependencies = [
327
+ "cfg-if",
328
+ "js-sys",
329
+ "libc",
330
+ "wasi",
331
+ "wasm-bindgen",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "ghash"
336
+ version = "0.5.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
339
+ dependencies = [
340
+ "opaque-debug",
341
+ "polyval",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "glob"
346
+ version = "0.3.4"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
349
+
350
+ [[package]]
351
+ name = "group"
352
+ version = "0.13.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
355
+ dependencies = [
356
+ "ff",
357
+ "rand_core",
358
+ "subtle",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "hex"
363
+ version = "0.4.3"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
366
+
367
+ [[package]]
368
+ name = "hkdf"
369
+ version = "0.12.4"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
372
+ dependencies = [
373
+ "hmac",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "hmac"
378
+ version = "0.12.1"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
381
+ dependencies = [
382
+ "digest",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "inout"
387
+ version = "0.1.4"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
390
+ dependencies = [
391
+ "generic-array",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "itertools"
396
+ version = "0.13.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
399
+ dependencies = [
400
+ "either",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "itoa"
405
+ version = "1.0.18"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
408
+
409
+ [[package]]
410
+ name = "js-sys"
411
+ version = "0.3.104"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
414
+ dependencies = [
415
+ "cfg-if",
416
+ "futures-util",
417
+ "wasm-bindgen",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "k256"
422
+ version = "0.13.4"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
425
+ dependencies = [
426
+ "cfg-if",
427
+ "elliptic-curve",
428
+ "once_cell",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "lazy_static"
433
+ version = "1.5.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
436
+
437
+ [[package]]
438
+ name = "libc"
439
+ version = "0.2.189"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
442
+
443
+ [[package]]
444
+ name = "libloading"
445
+ version = "0.8.9"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
448
+ dependencies = [
449
+ "cfg-if",
450
+ "windows-link",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "lock_api"
455
+ version = "0.4.14"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
458
+ dependencies = [
459
+ "scopeguard",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "magnus"
464
+ version = "0.8.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
467
+ dependencies = [
468
+ "magnus-macros",
469
+ "rb-sys",
470
+ "rb-sys-env",
471
+ "seq-macro",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "magnus-macros"
476
+ version = "0.8.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
479
+ dependencies = [
480
+ "proc-macro2",
481
+ "quote",
482
+ "syn 2.0.119",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "memchr"
487
+ version = "2.8.3"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
490
+
491
+ [[package]]
492
+ name = "minimal-lexical"
493
+ version = "0.2.1"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
496
+
497
+ [[package]]
498
+ name = "nom"
499
+ version = "7.1.3"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
502
+ dependencies = [
503
+ "memchr",
504
+ "minimal-lexical",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "once_cell"
509
+ version = "1.21.4"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
512
+ dependencies = [
513
+ "critical-section",
514
+ "portable-atomic",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "opaque-debug"
519
+ version = "0.3.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
522
+
523
+ [[package]]
524
+ name = "parking_lot"
525
+ version = "0.12.5"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
528
+ dependencies = [
529
+ "lock_api",
530
+ "parking_lot_core",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "parking_lot_core"
535
+ version = "0.9.12"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
538
+ dependencies = [
539
+ "cfg-if",
540
+ "libc",
541
+ "redox_syscall",
542
+ "smallvec",
543
+ "windows-link",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "pin-project-lite"
548
+ version = "0.2.17"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
551
+
552
+ [[package]]
553
+ name = "polyval"
554
+ version = "0.6.2"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
557
+ dependencies = [
558
+ "cfg-if",
559
+ "cpufeatures",
560
+ "opaque-debug",
561
+ "universal-hash",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "portable-atomic"
566
+ version = "1.15.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
569
+
570
+ [[package]]
571
+ name = "ppv-lite86"
572
+ version = "0.2.21"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
575
+ dependencies = [
576
+ "zerocopy",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "proc-macro2"
581
+ version = "1.0.107"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
584
+ dependencies = [
585
+ "unicode-ident",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "quote"
590
+ version = "1.0.47"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
593
+ dependencies = [
594
+ "proc-macro2",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "rand"
599
+ version = "0.8.8"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
602
+ dependencies = [
603
+ "libc",
604
+ "rand_chacha",
605
+ "rand_core",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "rand_chacha"
610
+ version = "0.3.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
613
+ dependencies = [
614
+ "ppv-lite86",
615
+ "rand_core",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "rand_core"
620
+ version = "0.6.4"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
623
+ dependencies = [
624
+ "getrandom",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "rb-sys"
629
+ version = "0.9.128"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
632
+ dependencies = [
633
+ "rb-sys-build",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "rb-sys-build"
638
+ version = "0.9.130"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
641
+ dependencies = [
642
+ "bindgen",
643
+ "lazy_static",
644
+ "proc-macro2",
645
+ "quote",
646
+ "regex",
647
+ "shell-words",
648
+ "syn 2.0.119",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "rb-sys-env"
653
+ version = "0.2.3"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
656
+
657
+ [[package]]
658
+ name = "redox_syscall"
659
+ version = "0.5.18"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
662
+ dependencies = [
663
+ "bitflags",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "regex"
668
+ version = "1.13.1"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
671
+ dependencies = [
672
+ "aho-corasick",
673
+ "memchr",
674
+ "regex-automata",
675
+ "regex-syntax",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "regex-automata"
680
+ version = "0.4.18"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
683
+ dependencies = [
684
+ "aho-corasick",
685
+ "memchr",
686
+ "regex-syntax",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "regex-syntax"
691
+ version = "0.8.11"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
694
+
695
+ [[package]]
696
+ name = "rustc-hash"
697
+ version = "2.1.3"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
700
+
701
+ [[package]]
702
+ name = "rustversion"
703
+ version = "1.0.23"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
706
+
707
+ [[package]]
708
+ name = "scopeguard"
709
+ version = "1.2.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
712
+
713
+ [[package]]
714
+ name = "sec1"
715
+ version = "0.7.3"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
718
+ dependencies = [
719
+ "base16ct",
720
+ "der",
721
+ "generic-array",
722
+ "subtle",
723
+ "zeroize",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "seq-macro"
728
+ version = "0.3.6"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
731
+
732
+ [[package]]
733
+ name = "serde"
734
+ version = "1.0.229"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
737
+ dependencies = [
738
+ "serde_core",
739
+ "serde_derive",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "serde_core"
744
+ version = "1.0.229"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
747
+ dependencies = [
748
+ "serde_derive",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "serde_derive"
753
+ version = "1.0.229"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
756
+ dependencies = [
757
+ "proc-macro2",
758
+ "quote",
759
+ "syn 3.0.4",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "serde_json"
764
+ version = "1.0.151"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
767
+ dependencies = [
768
+ "itoa",
769
+ "memchr",
770
+ "serde",
771
+ "serde_core",
772
+ "zmij",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "sha2"
777
+ version = "0.10.9"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
780
+ dependencies = [
781
+ "cfg-if",
782
+ "cpufeatures",
783
+ "digest",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "shell-words"
788
+ version = "1.1.1"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
791
+
792
+ [[package]]
793
+ name = "shlex"
794
+ version = "1.3.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
797
+
798
+ [[package]]
799
+ name = "slab"
800
+ version = "0.4.12"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
803
+
804
+ [[package]]
805
+ name = "smallvec"
806
+ version = "1.15.2"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
809
+
810
+ [[package]]
811
+ name = "subtle"
812
+ version = "2.6.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
815
+
816
+ [[package]]
817
+ name = "syn"
818
+ version = "2.0.119"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
821
+ dependencies = [
822
+ "proc-macro2",
823
+ "quote",
824
+ "unicode-ident",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "syn"
829
+ version = "3.0.4"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
832
+ dependencies = [
833
+ "proc-macro2",
834
+ "quote",
835
+ "unicode-ident",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "typenum"
840
+ version = "1.20.1"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
843
+
844
+ [[package]]
845
+ name = "unicode-ident"
846
+ version = "1.0.24"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
849
+
850
+ [[package]]
851
+ name = "universal-hash"
852
+ version = "0.5.1"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
855
+ dependencies = [
856
+ "crypto-common",
857
+ "subtle",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "version_check"
862
+ version = "0.9.5"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
865
+
866
+ [[package]]
867
+ name = "wasi"
868
+ version = "0.11.1+wasi-snapshot-preview1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
871
+
872
+ [[package]]
873
+ name = "wasm-bindgen"
874
+ version = "0.2.127"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
877
+ dependencies = [
878
+ "cfg-if",
879
+ "once_cell",
880
+ "rustversion",
881
+ "wasm-bindgen-macro",
882
+ "wasm-bindgen-shared",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "wasm-bindgen-macro"
887
+ version = "0.2.127"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
890
+ dependencies = [
891
+ "quote",
892
+ "wasm-bindgen-macro-support",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "wasm-bindgen-macro-support"
897
+ version = "0.2.127"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
900
+ dependencies = [
901
+ "bumpalo",
902
+ "proc-macro2",
903
+ "quote",
904
+ "syn 2.0.119",
905
+ "wasm-bindgen-shared",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "wasm-bindgen-shared"
910
+ version = "0.2.127"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
913
+ dependencies = [
914
+ "unicode-ident",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "windows-link"
919
+ version = "0.2.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
922
+
923
+ [[package]]
924
+ name = "zerocopy"
925
+ version = "0.8.56"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
928
+ dependencies = [
929
+ "zerocopy-derive",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "zerocopy-derive"
934
+ version = "0.8.56"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
937
+ dependencies = [
938
+ "proc-macro2",
939
+ "quote",
940
+ "syn 2.0.119",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "zeroize"
945
+ version = "1.8.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
948
+
949
+ [[package]]
950
+ name = "zmij"
951
+ version = "1.0.23"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"