@ape-egg/vibe 1.7.2 → 1.9.0
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.
- package/CHANGELOG.md +139 -0
- package/README.md +28 -0
- package/boot.js +5 -1
- package/compiler/native/vibe-compiler-darwin-arm64 +0 -0
- package/compiler/native/vibe-compiler-linux-x64 +0 -0
- package/compiler/src/Cargo.lock +85 -496
- package/compiler/src/Cargo.toml +1 -1
- package/compiler/src/compiler/compile.rs +3 -11
- package/compiler/src/parser/html.rs +15 -15
- package/index.js +15 -0
- package/package.json +2 -2
- package/runtime/_vibe-compiled-iteration-batch.js +18 -9
- package/runtime/affected.js +54 -16
- package/runtime/component.js +287 -110
- package/runtime/conditionals.js +99 -7
- package/runtime/constants.js +10 -6
- package/runtime/index.js +142 -47
- package/runtime/iterate.js +364 -142
- package/runtime/iteration-utils.js +5 -1
- package/runtime/manifest.js +2 -1
- package/runtime/parse.js +67 -80
- package/runtime/pre-compiled-iterations.js +34 -21
- package/runtime/pre-compiled-manifest.js +38 -13
- package/runtime/reconcile.js +621 -0
- package/runtime/state.js +26 -7
- package/runtime/utils.js +97 -5
- package/vibe.css +3 -1
package/compiler/src/Cargo.lock
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
5
11
|
[[package]]
|
|
6
12
|
name = "ahash"
|
|
7
13
|
version = "0.8.12"
|
|
@@ -108,9 +114,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
108
114
|
|
|
109
115
|
[[package]]
|
|
110
116
|
name = "base64"
|
|
111
|
-
version = "0.
|
|
117
|
+
version = "0.22.1"
|
|
112
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
-
checksum = "
|
|
119
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
114
120
|
|
|
115
121
|
[[package]]
|
|
116
122
|
name = "better_scoped_tls"
|
|
@@ -142,12 +148,6 @@ dependencies = [
|
|
|
142
148
|
"allocator-api2",
|
|
143
149
|
]
|
|
144
150
|
|
|
145
|
-
[[package]]
|
|
146
|
-
name = "bytes"
|
|
147
|
-
version = "1.11.0"
|
|
148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
-
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
150
|
-
|
|
151
151
|
[[package]]
|
|
152
152
|
name = "cc"
|
|
153
153
|
version = "1.2.55"
|
|
@@ -221,21 +221,14 @@ dependencies = [
|
|
|
221
221
|
]
|
|
222
222
|
|
|
223
223
|
[[package]]
|
|
224
|
-
name = "
|
|
225
|
-
version = "
|
|
224
|
+
name = "crc32fast"
|
|
225
|
+
version = "1.5.0"
|
|
226
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
227
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
228
228
|
dependencies = [
|
|
229
|
-
"
|
|
230
|
-
"libc",
|
|
229
|
+
"cfg-if",
|
|
231
230
|
]
|
|
232
231
|
|
|
233
|
-
[[package]]
|
|
234
|
-
name = "core-foundation-sys"
|
|
235
|
-
version = "0.8.7"
|
|
236
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
-
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
238
|
-
|
|
239
232
|
[[package]]
|
|
240
233
|
name = "crossbeam-channel"
|
|
241
234
|
version = "0.5.15"
|
|
@@ -287,21 +280,6 @@ version = "1.15.0"
|
|
|
287
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
281
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
289
282
|
|
|
290
|
-
[[package]]
|
|
291
|
-
name = "encoding_rs"
|
|
292
|
-
version = "0.8.35"
|
|
293
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
295
|
-
dependencies = [
|
|
296
|
-
"cfg-if",
|
|
297
|
-
]
|
|
298
|
-
|
|
299
|
-
[[package]]
|
|
300
|
-
name = "equivalent"
|
|
301
|
-
version = "1.0.2"
|
|
302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
304
|
-
|
|
305
283
|
[[package]]
|
|
306
284
|
name = "file-id"
|
|
307
285
|
version = "0.2.3"
|
|
@@ -329,10 +307,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
329
307
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
330
308
|
|
|
331
309
|
[[package]]
|
|
332
|
-
name = "
|
|
333
|
-
version = "1.
|
|
310
|
+
name = "flate2"
|
|
311
|
+
version = "1.1.9"
|
|
334
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "
|
|
313
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"crc32fast",
|
|
316
|
+
"miniz_oxide",
|
|
317
|
+
]
|
|
336
318
|
|
|
337
319
|
[[package]]
|
|
338
320
|
name = "form_urlencoded"
|
|
@@ -373,54 +355,6 @@ dependencies = [
|
|
|
373
355
|
"new_debug_unreachable",
|
|
374
356
|
]
|
|
375
357
|
|
|
376
|
-
[[package]]
|
|
377
|
-
name = "futures-channel"
|
|
378
|
-
version = "0.3.31"
|
|
379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
-
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
381
|
-
dependencies = [
|
|
382
|
-
"futures-core",
|
|
383
|
-
]
|
|
384
|
-
|
|
385
|
-
[[package]]
|
|
386
|
-
name = "futures-core"
|
|
387
|
-
version = "0.3.31"
|
|
388
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
-
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
390
|
-
|
|
391
|
-
[[package]]
|
|
392
|
-
name = "futures-io"
|
|
393
|
-
version = "0.3.31"
|
|
394
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
396
|
-
|
|
397
|
-
[[package]]
|
|
398
|
-
name = "futures-sink"
|
|
399
|
-
version = "0.3.31"
|
|
400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
-
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
402
|
-
|
|
403
|
-
[[package]]
|
|
404
|
-
name = "futures-task"
|
|
405
|
-
version = "0.3.31"
|
|
406
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
-
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
408
|
-
|
|
409
|
-
[[package]]
|
|
410
|
-
name = "futures-util"
|
|
411
|
-
version = "0.3.31"
|
|
412
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
414
|
-
dependencies = [
|
|
415
|
-
"futures-core",
|
|
416
|
-
"futures-io",
|
|
417
|
-
"futures-task",
|
|
418
|
-
"memchr",
|
|
419
|
-
"pin-project-lite",
|
|
420
|
-
"pin-utils",
|
|
421
|
-
"slab",
|
|
422
|
-
]
|
|
423
|
-
|
|
424
358
|
[[package]]
|
|
425
359
|
name = "getrandom"
|
|
426
360
|
version = "0.2.17"
|
|
@@ -438,25 +372,6 @@ version = "0.3.3"
|
|
|
438
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
373
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
440
374
|
|
|
441
|
-
[[package]]
|
|
442
|
-
name = "h2"
|
|
443
|
-
version = "0.3.27"
|
|
444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
446
|
-
dependencies = [
|
|
447
|
-
"bytes",
|
|
448
|
-
"fnv",
|
|
449
|
-
"futures-core",
|
|
450
|
-
"futures-sink",
|
|
451
|
-
"futures-util",
|
|
452
|
-
"http",
|
|
453
|
-
"indexmap",
|
|
454
|
-
"slab",
|
|
455
|
-
"tokio",
|
|
456
|
-
"tokio-util",
|
|
457
|
-
"tracing",
|
|
458
|
-
]
|
|
459
|
-
|
|
460
375
|
[[package]]
|
|
461
376
|
name = "hashbrown"
|
|
462
377
|
version = "0.14.5"
|
|
@@ -467,12 +382,6 @@ dependencies = [
|
|
|
467
382
|
"allocator-api2",
|
|
468
383
|
]
|
|
469
384
|
|
|
470
|
-
[[package]]
|
|
471
|
-
name = "hashbrown"
|
|
472
|
-
version = "0.16.1"
|
|
473
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
475
|
-
|
|
476
385
|
[[package]]
|
|
477
386
|
name = "heck"
|
|
478
387
|
version = "0.5.0"
|
|
@@ -485,7 +394,7 @@ version = "0.2.17"
|
|
|
485
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
395
|
checksum = "a1a26def229ea95a8709dad32868d975d0dd40235bd2ce82920e4a8fe692b5e0"
|
|
487
396
|
dependencies = [
|
|
488
|
-
"hashbrown
|
|
397
|
+
"hashbrown",
|
|
489
398
|
"new_debug_unreachable",
|
|
490
399
|
"once_cell",
|
|
491
400
|
"phf",
|
|
@@ -507,78 +416,6 @@ dependencies = [
|
|
|
507
416
|
"syn 2.0.114",
|
|
508
417
|
]
|
|
509
418
|
|
|
510
|
-
[[package]]
|
|
511
|
-
name = "http"
|
|
512
|
-
version = "0.2.12"
|
|
513
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
515
|
-
dependencies = [
|
|
516
|
-
"bytes",
|
|
517
|
-
"fnv",
|
|
518
|
-
"itoa",
|
|
519
|
-
]
|
|
520
|
-
|
|
521
|
-
[[package]]
|
|
522
|
-
name = "http-body"
|
|
523
|
-
version = "0.4.6"
|
|
524
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
526
|
-
dependencies = [
|
|
527
|
-
"bytes",
|
|
528
|
-
"http",
|
|
529
|
-
"pin-project-lite",
|
|
530
|
-
]
|
|
531
|
-
|
|
532
|
-
[[package]]
|
|
533
|
-
name = "httparse"
|
|
534
|
-
version = "1.10.1"
|
|
535
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
537
|
-
|
|
538
|
-
[[package]]
|
|
539
|
-
name = "httpdate"
|
|
540
|
-
version = "1.0.3"
|
|
541
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
543
|
-
|
|
544
|
-
[[package]]
|
|
545
|
-
name = "hyper"
|
|
546
|
-
version = "0.14.32"
|
|
547
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
549
|
-
dependencies = [
|
|
550
|
-
"bytes",
|
|
551
|
-
"futures-channel",
|
|
552
|
-
"futures-core",
|
|
553
|
-
"futures-util",
|
|
554
|
-
"h2",
|
|
555
|
-
"http",
|
|
556
|
-
"http-body",
|
|
557
|
-
"httparse",
|
|
558
|
-
"httpdate",
|
|
559
|
-
"itoa",
|
|
560
|
-
"pin-project-lite",
|
|
561
|
-
"socket2 0.5.10",
|
|
562
|
-
"tokio",
|
|
563
|
-
"tower-service",
|
|
564
|
-
"tracing",
|
|
565
|
-
"want",
|
|
566
|
-
]
|
|
567
|
-
|
|
568
|
-
[[package]]
|
|
569
|
-
name = "hyper-rustls"
|
|
570
|
-
version = "0.24.2"
|
|
571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
-
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
573
|
-
dependencies = [
|
|
574
|
-
"futures-util",
|
|
575
|
-
"http",
|
|
576
|
-
"hyper",
|
|
577
|
-
"rustls",
|
|
578
|
-
"tokio",
|
|
579
|
-
"tokio-rustls",
|
|
580
|
-
]
|
|
581
|
-
|
|
582
419
|
[[package]]
|
|
583
420
|
name = "icu_collections"
|
|
584
421
|
version = "2.1.1"
|
|
@@ -681,16 +518,6 @@ dependencies = [
|
|
|
681
518
|
"icu_properties",
|
|
682
519
|
]
|
|
683
520
|
|
|
684
|
-
[[package]]
|
|
685
|
-
name = "indexmap"
|
|
686
|
-
version = "2.13.0"
|
|
687
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
-
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
689
|
-
dependencies = [
|
|
690
|
-
"equivalent",
|
|
691
|
-
"hashbrown 0.16.1",
|
|
692
|
-
]
|
|
693
|
-
|
|
694
521
|
[[package]]
|
|
695
522
|
name = "inotify"
|
|
696
523
|
version = "0.9.6"
|
|
@@ -711,12 +538,6 @@ dependencies = [
|
|
|
711
538
|
"libc",
|
|
712
539
|
]
|
|
713
540
|
|
|
714
|
-
[[package]]
|
|
715
|
-
name = "ipnet"
|
|
716
|
-
version = "2.11.0"
|
|
717
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
-
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
719
|
-
|
|
720
541
|
[[package]]
|
|
721
542
|
name = "is-macro"
|
|
722
543
|
version = "0.3.7"
|
|
@@ -741,16 +562,6 @@ version = "1.0.17"
|
|
|
741
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
563
|
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
743
564
|
|
|
744
|
-
[[package]]
|
|
745
|
-
name = "js-sys"
|
|
746
|
-
version = "0.3.85"
|
|
747
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
749
|
-
dependencies = [
|
|
750
|
-
"once_cell",
|
|
751
|
-
"wasm-bindgen",
|
|
752
|
-
]
|
|
753
|
-
|
|
754
565
|
[[package]]
|
|
755
566
|
name = "kqueue"
|
|
756
567
|
version = "1.1.1"
|
|
@@ -854,10 +665,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
854
665
|
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
855
666
|
|
|
856
667
|
[[package]]
|
|
857
|
-
name = "
|
|
858
|
-
version = "0.
|
|
668
|
+
name = "miniz_oxide"
|
|
669
|
+
version = "0.8.9"
|
|
859
670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
671
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"adler2",
|
|
674
|
+
"simd-adler32",
|
|
675
|
+
]
|
|
861
676
|
|
|
862
677
|
[[package]]
|
|
863
678
|
name = "mio"
|
|
@@ -871,17 +686,6 @@ dependencies = [
|
|
|
871
686
|
"windows-sys 0.48.0",
|
|
872
687
|
]
|
|
873
688
|
|
|
874
|
-
[[package]]
|
|
875
|
-
name = "mio"
|
|
876
|
-
version = "1.1.1"
|
|
877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
879
|
-
dependencies = [
|
|
880
|
-
"libc",
|
|
881
|
-
"wasi",
|
|
882
|
-
"windows-sys 0.61.2",
|
|
883
|
-
]
|
|
884
|
-
|
|
885
689
|
[[package]]
|
|
886
690
|
name = "new_debug_unreachable"
|
|
887
691
|
version = "1.0.6"
|
|
@@ -902,7 +706,7 @@ dependencies = [
|
|
|
902
706
|
"kqueue",
|
|
903
707
|
"libc",
|
|
904
708
|
"log",
|
|
905
|
-
"mio
|
|
709
|
+
"mio",
|
|
906
710
|
"walkdir",
|
|
907
711
|
"windows-sys 0.48.0",
|
|
908
712
|
]
|
|
@@ -1058,12 +862,6 @@ version = "0.2.16"
|
|
|
1058
862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
863
|
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1060
864
|
|
|
1061
|
-
[[package]]
|
|
1062
|
-
name = "pin-utils"
|
|
1063
|
-
version = "0.1.0"
|
|
1064
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1066
|
-
|
|
1067
865
|
[[package]]
|
|
1068
866
|
name = "potential_utf"
|
|
1069
867
|
version = "0.1.4"
|
|
@@ -1209,47 +1007,6 @@ version = "0.8.8"
|
|
|
1209
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
1008
|
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1211
1009
|
|
|
1212
|
-
[[package]]
|
|
1213
|
-
name = "reqwest"
|
|
1214
|
-
version = "0.11.27"
|
|
1215
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1217
|
-
dependencies = [
|
|
1218
|
-
"base64",
|
|
1219
|
-
"bytes",
|
|
1220
|
-
"encoding_rs",
|
|
1221
|
-
"futures-core",
|
|
1222
|
-
"futures-util",
|
|
1223
|
-
"h2",
|
|
1224
|
-
"http",
|
|
1225
|
-
"http-body",
|
|
1226
|
-
"hyper",
|
|
1227
|
-
"hyper-rustls",
|
|
1228
|
-
"ipnet",
|
|
1229
|
-
"js-sys",
|
|
1230
|
-
"log",
|
|
1231
|
-
"mime",
|
|
1232
|
-
"once_cell",
|
|
1233
|
-
"percent-encoding",
|
|
1234
|
-
"pin-project-lite",
|
|
1235
|
-
"rustls",
|
|
1236
|
-
"rustls-pemfile",
|
|
1237
|
-
"serde",
|
|
1238
|
-
"serde_json",
|
|
1239
|
-
"serde_urlencoded",
|
|
1240
|
-
"sync_wrapper",
|
|
1241
|
-
"system-configuration",
|
|
1242
|
-
"tokio",
|
|
1243
|
-
"tokio-rustls",
|
|
1244
|
-
"tower-service",
|
|
1245
|
-
"url",
|
|
1246
|
-
"wasm-bindgen",
|
|
1247
|
-
"wasm-bindgen-futures",
|
|
1248
|
-
"web-sys",
|
|
1249
|
-
"webpki-roots",
|
|
1250
|
-
"winreg",
|
|
1251
|
-
]
|
|
1252
|
-
|
|
1253
1010
|
[[package]]
|
|
1254
1011
|
name = "ring"
|
|
1255
1012
|
version = "0.17.14"
|
|
@@ -1299,41 +1056,39 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
1299
1056
|
|
|
1300
1057
|
[[package]]
|
|
1301
1058
|
name = "rustls"
|
|
1302
|
-
version = "0.
|
|
1059
|
+
version = "0.23.37"
|
|
1303
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
-
checksum = "
|
|
1061
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1305
1062
|
dependencies = [
|
|
1306
1063
|
"log",
|
|
1064
|
+
"once_cell",
|
|
1307
1065
|
"ring",
|
|
1066
|
+
"rustls-pki-types",
|
|
1308
1067
|
"rustls-webpki",
|
|
1309
|
-
"
|
|
1068
|
+
"subtle",
|
|
1069
|
+
"zeroize",
|
|
1310
1070
|
]
|
|
1311
1071
|
|
|
1312
1072
|
[[package]]
|
|
1313
|
-
name = "rustls-
|
|
1314
|
-
version = "1.0
|
|
1073
|
+
name = "rustls-pki-types"
|
|
1074
|
+
version = "1.14.0"
|
|
1315
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
-
checksum = "
|
|
1076
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1317
1077
|
dependencies = [
|
|
1318
|
-
"
|
|
1078
|
+
"zeroize",
|
|
1319
1079
|
]
|
|
1320
1080
|
|
|
1321
1081
|
[[package]]
|
|
1322
1082
|
name = "rustls-webpki"
|
|
1323
|
-
version = "0.
|
|
1083
|
+
version = "0.103.11"
|
|
1324
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "
|
|
1085
|
+
checksum = "20a6af516fea4b20eccceaf166e8aa666ac996208e8a644ce3ef5aa783bc7cd4"
|
|
1326
1086
|
dependencies = [
|
|
1327
1087
|
"ring",
|
|
1088
|
+
"rustls-pki-types",
|
|
1328
1089
|
"untrusted",
|
|
1329
1090
|
]
|
|
1330
1091
|
|
|
1331
|
-
[[package]]
|
|
1332
|
-
name = "rustversion"
|
|
1333
|
-
version = "1.0.22"
|
|
1334
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
-
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1336
|
-
|
|
1337
1092
|
[[package]]
|
|
1338
1093
|
name = "ryu"
|
|
1339
1094
|
version = "1.0.22"
|
|
@@ -1361,16 +1116,6 @@ version = "1.2.0"
|
|
|
1361
1116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
1117
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1363
1118
|
|
|
1364
|
-
[[package]]
|
|
1365
|
-
name = "sct"
|
|
1366
|
-
version = "0.7.1"
|
|
1367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
1369
|
-
dependencies = [
|
|
1370
|
-
"ring",
|
|
1371
|
-
"untrusted",
|
|
1372
|
-
]
|
|
1373
|
-
|
|
1374
1119
|
[[package]]
|
|
1375
1120
|
name = "serde"
|
|
1376
1121
|
version = "1.0.210"
|
|
@@ -1403,24 +1148,18 @@ dependencies = [
|
|
|
1403
1148
|
"serde",
|
|
1404
1149
|
]
|
|
1405
1150
|
|
|
1406
|
-
[[package]]
|
|
1407
|
-
name = "serde_urlencoded"
|
|
1408
|
-
version = "0.7.1"
|
|
1409
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1411
|
-
dependencies = [
|
|
1412
|
-
"form_urlencoded",
|
|
1413
|
-
"itoa",
|
|
1414
|
-
"ryu",
|
|
1415
|
-
"serde",
|
|
1416
|
-
]
|
|
1417
|
-
|
|
1418
1151
|
[[package]]
|
|
1419
1152
|
name = "shlex"
|
|
1420
1153
|
version = "1.3.0"
|
|
1421
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
1155
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1423
1156
|
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "simd-adler32"
|
|
1159
|
+
version = "0.3.9"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1162
|
+
|
|
1424
1163
|
[[package]]
|
|
1425
1164
|
name = "siphasher"
|
|
1426
1165
|
version = "0.3.11"
|
|
@@ -1433,12 +1172,6 @@ version = "1.0.1"
|
|
|
1433
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
1173
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1435
1174
|
|
|
1436
|
-
[[package]]
|
|
1437
|
-
name = "slab"
|
|
1438
|
-
version = "0.4.12"
|
|
1439
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
-
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1441
|
-
|
|
1442
1175
|
[[package]]
|
|
1443
1176
|
name = "smallvec"
|
|
1444
1177
|
version = "1.15.1"
|
|
@@ -1456,26 +1189,6 @@ dependencies = [
|
|
|
1456
1189
|
"version_check",
|
|
1457
1190
|
]
|
|
1458
1191
|
|
|
1459
|
-
[[package]]
|
|
1460
|
-
name = "socket2"
|
|
1461
|
-
version = "0.5.10"
|
|
1462
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
1464
|
-
dependencies = [
|
|
1465
|
-
"libc",
|
|
1466
|
-
"windows-sys 0.52.0",
|
|
1467
|
-
]
|
|
1468
|
-
|
|
1469
|
-
[[package]]
|
|
1470
|
-
name = "socket2"
|
|
1471
|
-
version = "0.6.2"
|
|
1472
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
-
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
1474
|
-
dependencies = [
|
|
1475
|
-
"libc",
|
|
1476
|
-
"windows-sys 0.60.2",
|
|
1477
|
-
]
|
|
1478
|
-
|
|
1479
1192
|
[[package]]
|
|
1480
1193
|
name = "stable_deref_trait"
|
|
1481
1194
|
version = "1.2.1"
|
|
@@ -1544,6 +1257,12 @@ version = "0.11.1"
|
|
|
1544
1257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
1258
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1546
1259
|
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "subtle"
|
|
1262
|
+
version = "2.6.1"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1265
|
+
|
|
1547
1266
|
[[package]]
|
|
1548
1267
|
name = "swc_allocator"
|
|
1549
1268
|
version = "0.1.10"
|
|
@@ -1551,7 +1270,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1551
1270
|
checksum = "76aa0eb65c0f39f9b6d82a7e5192c30f7ac9a78f084a21f270de1d8c600ca388"
|
|
1552
1271
|
dependencies = [
|
|
1553
1272
|
"bumpalo",
|
|
1554
|
-
"hashbrown
|
|
1273
|
+
"hashbrown",
|
|
1555
1274
|
"ptr_meta",
|
|
1556
1275
|
"rustc-hash",
|
|
1557
1276
|
"triomphe",
|
|
@@ -1703,12 +1422,6 @@ dependencies = [
|
|
|
1703
1422
|
"unicode-ident",
|
|
1704
1423
|
]
|
|
1705
1424
|
|
|
1706
|
-
[[package]]
|
|
1707
|
-
name = "sync_wrapper"
|
|
1708
|
-
version = "0.1.2"
|
|
1709
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
-
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
1711
|
-
|
|
1712
1425
|
[[package]]
|
|
1713
1426
|
name = "synstructure"
|
|
1714
1427
|
version = "0.13.2"
|
|
@@ -1720,27 +1433,6 @@ dependencies = [
|
|
|
1720
1433
|
"syn 2.0.114",
|
|
1721
1434
|
]
|
|
1722
1435
|
|
|
1723
|
-
[[package]]
|
|
1724
|
-
name = "system-configuration"
|
|
1725
|
-
version = "0.5.1"
|
|
1726
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
-
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
1728
|
-
dependencies = [
|
|
1729
|
-
"bitflags 1.3.2",
|
|
1730
|
-
"core-foundation",
|
|
1731
|
-
"system-configuration-sys",
|
|
1732
|
-
]
|
|
1733
|
-
|
|
1734
|
-
[[package]]
|
|
1735
|
-
name = "system-configuration-sys"
|
|
1736
|
-
version = "0.5.0"
|
|
1737
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
-
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
1739
|
-
dependencies = [
|
|
1740
|
-
"core-foundation-sys",
|
|
1741
|
-
"libc",
|
|
1742
|
-
]
|
|
1743
|
-
|
|
1744
1436
|
[[package]]
|
|
1745
1437
|
name = "tendril"
|
|
1746
1438
|
version = "0.4.3"
|
|
@@ -1782,49 +1474,6 @@ dependencies = [
|
|
|
1782
1474
|
"zerovec",
|
|
1783
1475
|
]
|
|
1784
1476
|
|
|
1785
|
-
[[package]]
|
|
1786
|
-
name = "tokio"
|
|
1787
|
-
version = "1.49.0"
|
|
1788
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
-
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
1790
|
-
dependencies = [
|
|
1791
|
-
"bytes",
|
|
1792
|
-
"libc",
|
|
1793
|
-
"mio 1.1.1",
|
|
1794
|
-
"pin-project-lite",
|
|
1795
|
-
"socket2 0.6.2",
|
|
1796
|
-
"windows-sys 0.61.2",
|
|
1797
|
-
]
|
|
1798
|
-
|
|
1799
|
-
[[package]]
|
|
1800
|
-
name = "tokio-rustls"
|
|
1801
|
-
version = "0.24.1"
|
|
1802
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
-
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
1804
|
-
dependencies = [
|
|
1805
|
-
"rustls",
|
|
1806
|
-
"tokio",
|
|
1807
|
-
]
|
|
1808
|
-
|
|
1809
|
-
[[package]]
|
|
1810
|
-
name = "tokio-util"
|
|
1811
|
-
version = "0.7.18"
|
|
1812
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
-
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1814
|
-
dependencies = [
|
|
1815
|
-
"bytes",
|
|
1816
|
-
"futures-core",
|
|
1817
|
-
"futures-sink",
|
|
1818
|
-
"pin-project-lite",
|
|
1819
|
-
"tokio",
|
|
1820
|
-
]
|
|
1821
|
-
|
|
1822
|
-
[[package]]
|
|
1823
|
-
name = "tower-service"
|
|
1824
|
-
version = "0.3.3"
|
|
1825
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1827
|
-
|
|
1828
1477
|
[[package]]
|
|
1829
1478
|
name = "tracing"
|
|
1830
1479
|
version = "0.1.44"
|
|
@@ -1866,12 +1515,6 @@ dependencies = [
|
|
|
1866
1515
|
"stable_deref_trait",
|
|
1867
1516
|
]
|
|
1868
1517
|
|
|
1869
|
-
[[package]]
|
|
1870
|
-
name = "try-lock"
|
|
1871
|
-
version = "0.2.5"
|
|
1872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1874
|
-
|
|
1875
1518
|
[[package]]
|
|
1876
1519
|
name = "typed-arena"
|
|
1877
1520
|
version = "2.0.2"
|
|
@@ -1902,6 +1545,22 @@ version = "0.9.0"
|
|
|
1902
1545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
1546
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1904
1547
|
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "ureq"
|
|
1550
|
+
version = "2.12.1"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"base64",
|
|
1555
|
+
"flate2",
|
|
1556
|
+
"log",
|
|
1557
|
+
"once_cell",
|
|
1558
|
+
"rustls",
|
|
1559
|
+
"rustls-pki-types",
|
|
1560
|
+
"url",
|
|
1561
|
+
"webpki-roots 0.26.11",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1905
1564
|
[[package]]
|
|
1906
1565
|
name = "url"
|
|
1907
1566
|
version = "2.5.8"
|
|
@@ -1952,7 +1611,6 @@ dependencies = [
|
|
|
1952
1611
|
"notify-debouncer-full",
|
|
1953
1612
|
"rayon",
|
|
1954
1613
|
"regex",
|
|
1955
|
-
"reqwest",
|
|
1956
1614
|
"rquickjs",
|
|
1957
1615
|
"serde",
|
|
1958
1616
|
"serde_json",
|
|
@@ -1961,6 +1619,7 @@ dependencies = [
|
|
|
1961
1619
|
"swc_ecma_parser",
|
|
1962
1620
|
"swc_ecma_visit",
|
|
1963
1621
|
"thiserror",
|
|
1622
|
+
"ureq",
|
|
1964
1623
|
]
|
|
1965
1624
|
|
|
1966
1625
|
[[package]]
|
|
@@ -1973,15 +1632,6 @@ dependencies = [
|
|
|
1973
1632
|
"winapi-util",
|
|
1974
1633
|
]
|
|
1975
1634
|
|
|
1976
|
-
[[package]]
|
|
1977
|
-
name = "want"
|
|
1978
|
-
version = "0.3.1"
|
|
1979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1981
|
-
dependencies = [
|
|
1982
|
-
"try-lock",
|
|
1983
|
-
]
|
|
1984
|
-
|
|
1985
1635
|
[[package]]
|
|
1986
1636
|
name = "wasi"
|
|
1987
1637
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -1989,80 +1639,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1989
1639
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1990
1640
|
|
|
1991
1641
|
[[package]]
|
|
1992
|
-
name = "
|
|
1993
|
-
version = "0.
|
|
1994
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
-
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1996
|
-
dependencies = [
|
|
1997
|
-
"cfg-if",
|
|
1998
|
-
"once_cell",
|
|
1999
|
-
"rustversion",
|
|
2000
|
-
"wasm-bindgen-macro",
|
|
2001
|
-
"wasm-bindgen-shared",
|
|
2002
|
-
]
|
|
2003
|
-
|
|
2004
|
-
[[package]]
|
|
2005
|
-
name = "wasm-bindgen-futures"
|
|
2006
|
-
version = "0.4.58"
|
|
2007
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
-
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
2009
|
-
dependencies = [
|
|
2010
|
-
"cfg-if",
|
|
2011
|
-
"futures-util",
|
|
2012
|
-
"js-sys",
|
|
2013
|
-
"once_cell",
|
|
2014
|
-
"wasm-bindgen",
|
|
2015
|
-
"web-sys",
|
|
2016
|
-
]
|
|
2017
|
-
|
|
2018
|
-
[[package]]
|
|
2019
|
-
name = "wasm-bindgen-macro"
|
|
2020
|
-
version = "0.2.108"
|
|
2021
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
-
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
2023
|
-
dependencies = [
|
|
2024
|
-
"quote",
|
|
2025
|
-
"wasm-bindgen-macro-support",
|
|
2026
|
-
]
|
|
2027
|
-
|
|
2028
|
-
[[package]]
|
|
2029
|
-
name = "wasm-bindgen-macro-support"
|
|
2030
|
-
version = "0.2.108"
|
|
2031
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
-
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
2033
|
-
dependencies = [
|
|
2034
|
-
"bumpalo",
|
|
2035
|
-
"proc-macro2",
|
|
2036
|
-
"quote",
|
|
2037
|
-
"syn 2.0.114",
|
|
2038
|
-
"wasm-bindgen-shared",
|
|
2039
|
-
]
|
|
2040
|
-
|
|
2041
|
-
[[package]]
|
|
2042
|
-
name = "wasm-bindgen-shared"
|
|
2043
|
-
version = "0.2.108"
|
|
1642
|
+
name = "webpki-roots"
|
|
1643
|
+
version = "0.26.11"
|
|
2044
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
1645
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
2046
1646
|
dependencies = [
|
|
2047
|
-
"
|
|
1647
|
+
"webpki-roots 1.0.6",
|
|
2048
1648
|
]
|
|
2049
1649
|
|
|
2050
1650
|
[[package]]
|
|
2051
|
-
name = "
|
|
2052
|
-
version = "0.
|
|
1651
|
+
name = "webpki-roots"
|
|
1652
|
+
version = "1.0.6"
|
|
2053
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
-
checksum = "
|
|
1654
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
2055
1655
|
dependencies = [
|
|
2056
|
-
"
|
|
2057
|
-
"wasm-bindgen",
|
|
1656
|
+
"rustls-pki-types",
|
|
2058
1657
|
]
|
|
2059
1658
|
|
|
2060
|
-
[[package]]
|
|
2061
|
-
name = "webpki-roots"
|
|
2062
|
-
version = "0.25.4"
|
|
2063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
-
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
|
|
2065
|
-
|
|
2066
1659
|
[[package]]
|
|
2067
1660
|
name = "winapi-util"
|
|
2068
1661
|
version = "0.1.11"
|
|
@@ -2309,16 +1902,6 @@ version = "0.53.1"
|
|
|
2309
1902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
1903
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2311
1904
|
|
|
2312
|
-
[[package]]
|
|
2313
|
-
name = "winreg"
|
|
2314
|
-
version = "0.50.0"
|
|
2315
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
-
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
2317
|
-
dependencies = [
|
|
2318
|
-
"cfg-if",
|
|
2319
|
-
"windows-sys 0.48.0",
|
|
2320
|
-
]
|
|
2321
|
-
|
|
2322
1905
|
[[package]]
|
|
2323
1906
|
name = "writeable"
|
|
2324
1907
|
version = "0.6.2"
|
|
@@ -2400,6 +1983,12 @@ dependencies = [
|
|
|
2400
1983
|
"synstructure",
|
|
2401
1984
|
]
|
|
2402
1985
|
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "zeroize"
|
|
1988
|
+
version = "1.8.2"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1991
|
+
|
|
2403
1992
|
[[package]]
|
|
2404
1993
|
name = "zerotrie"
|
|
2405
1994
|
version = "0.2.3"
|