electron-cli 0.3.0-alpha.10 → 0.3.0-alpha.12
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/Cargo.lock +607 -5
- package/Cargo.toml +5 -1
- package/README.md +9 -10
- package/package.json +1 -1
- package/src/cli.rs +28 -0
- package/src/commands/make.rs +897 -0
- package/src/commands/plan.rs +1 -0
- package/src/commands/publish.rs +738 -44
- package/src/project.rs +45 -0
package/Cargo.lock
CHANGED
|
@@ -53,7 +53,7 @@ version = "1.1.5"
|
|
|
53
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
54
|
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
55
|
dependencies = [
|
|
56
|
-
"windows-sys",
|
|
56
|
+
"windows-sys 0.61.2",
|
|
57
57
|
]
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
@@ -64,7 +64,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
|
64
64
|
dependencies = [
|
|
65
65
|
"anstyle",
|
|
66
66
|
"once_cell_polyfill",
|
|
67
|
-
"windows-sys",
|
|
67
|
+
"windows-sys 0.61.2",
|
|
68
68
|
]
|
|
69
69
|
|
|
70
70
|
[[package]]
|
|
@@ -138,6 +138,24 @@ version = "1.5.0"
|
|
|
138
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
139
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
140
140
|
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bytes"
|
|
143
|
+
version = "1.11.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "cab"
|
|
149
|
+
version = "0.6.0"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "171228650e6721d5acc0868a462cd864f49ac5f64e4a42cde270406e64e404d2"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"byteorder",
|
|
154
|
+
"flate2",
|
|
155
|
+
"lzxd",
|
|
156
|
+
"time",
|
|
157
|
+
]
|
|
158
|
+
|
|
141
159
|
[[package]]
|
|
142
160
|
name = "camino"
|
|
143
161
|
version = "1.2.2"
|
|
@@ -157,6 +175,17 @@ dependencies = [
|
|
|
157
175
|
"shlex",
|
|
158
176
|
]
|
|
159
177
|
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "cfb"
|
|
180
|
+
version = "0.14.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "a347dcabdae9c31b0825fd6a8bed285ec9c2acb89c47827126d52fa4f59cece3"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"fnv",
|
|
185
|
+
"uuid",
|
|
186
|
+
"web-time",
|
|
187
|
+
]
|
|
188
|
+
|
|
160
189
|
[[package]]
|
|
161
190
|
name = "cfg-if"
|
|
162
191
|
version = "1.0.4"
|
|
@@ -222,6 +251,35 @@ version = "1.0.5"
|
|
|
222
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
252
|
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
224
253
|
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "cookie"
|
|
256
|
+
version = "0.18.1"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"percent-encoding",
|
|
261
|
+
"time",
|
|
262
|
+
"version_check",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "cookie_store"
|
|
267
|
+
version = "0.22.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"cookie",
|
|
272
|
+
"document-features",
|
|
273
|
+
"idna",
|
|
274
|
+
"indexmap",
|
|
275
|
+
"log",
|
|
276
|
+
"serde",
|
|
277
|
+
"serde_derive",
|
|
278
|
+
"serde_json",
|
|
279
|
+
"time",
|
|
280
|
+
"url",
|
|
281
|
+
]
|
|
282
|
+
|
|
225
283
|
[[package]]
|
|
226
284
|
name = "core-foundation-sys"
|
|
227
285
|
version = "0.8.7"
|
|
@@ -290,6 +348,26 @@ dependencies = [
|
|
|
290
348
|
"crypto-common",
|
|
291
349
|
]
|
|
292
350
|
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "displaydoc"
|
|
353
|
+
version = "0.2.6"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"proc-macro2",
|
|
358
|
+
"quote",
|
|
359
|
+
"syn 2.0.117",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "document-features"
|
|
364
|
+
version = "0.2.12"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"litrs",
|
|
369
|
+
]
|
|
370
|
+
|
|
293
371
|
[[package]]
|
|
294
372
|
name = "either"
|
|
295
373
|
version = "1.16.0"
|
|
@@ -298,24 +376,37 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
|
298
376
|
|
|
299
377
|
[[package]]
|
|
300
378
|
name = "electron-cli"
|
|
301
|
-
version = "0.3.0-alpha.
|
|
379
|
+
version = "0.3.0-alpha.12"
|
|
302
380
|
dependencies = [
|
|
303
381
|
"anyhow",
|
|
304
382
|
"apple-dmg",
|
|
383
|
+
"cab",
|
|
305
384
|
"camino",
|
|
306
385
|
"clap",
|
|
307
386
|
"fatfs",
|
|
308
387
|
"flate2",
|
|
309
388
|
"fscommon",
|
|
310
389
|
"md5",
|
|
390
|
+
"msi",
|
|
311
391
|
"plist",
|
|
312
392
|
"rpm",
|
|
313
393
|
"serde",
|
|
314
394
|
"serde_json",
|
|
315
395
|
"tar",
|
|
396
|
+
"ureq",
|
|
397
|
+
"uuid",
|
|
316
398
|
"zip",
|
|
317
399
|
]
|
|
318
400
|
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "encoding_rs"
|
|
403
|
+
version = "0.8.35"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"cfg-if",
|
|
408
|
+
]
|
|
409
|
+
|
|
319
410
|
[[package]]
|
|
320
411
|
name = "enum-display-derive"
|
|
321
412
|
version = "0.1.1"
|
|
@@ -351,7 +442,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
351
442
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
352
443
|
dependencies = [
|
|
353
444
|
"libc",
|
|
354
|
-
"windows-sys",
|
|
445
|
+
"windows-sys 0.61.2",
|
|
355
446
|
]
|
|
356
447
|
|
|
357
448
|
[[package]]
|
|
@@ -393,12 +484,27 @@ dependencies = [
|
|
|
393
484
|
"zlib-rs",
|
|
394
485
|
]
|
|
395
486
|
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "fnv"
|
|
489
|
+
version = "1.0.7"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
492
|
+
|
|
396
493
|
[[package]]
|
|
397
494
|
name = "foldhash"
|
|
398
495
|
version = "0.1.5"
|
|
399
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
497
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
401
498
|
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "form_urlencoded"
|
|
501
|
+
version = "1.2.2"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"percent-encoding",
|
|
506
|
+
]
|
|
507
|
+
|
|
402
508
|
[[package]]
|
|
403
509
|
name = "fscommon"
|
|
404
510
|
version = "0.1.1"
|
|
@@ -505,6 +611,22 @@ version = "0.4.3"
|
|
|
505
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
612
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
507
613
|
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "http"
|
|
616
|
+
version = "1.4.1"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"bytes",
|
|
621
|
+
"itoa",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "httparse"
|
|
626
|
+
version = "1.10.1"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
629
|
+
|
|
508
630
|
[[package]]
|
|
509
631
|
name = "iana-time-zone"
|
|
510
632
|
version = "0.1.65"
|
|
@@ -529,12 +651,115 @@ dependencies = [
|
|
|
529
651
|
"cc",
|
|
530
652
|
]
|
|
531
653
|
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "icu_collections"
|
|
656
|
+
version = "2.2.0"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"displaydoc",
|
|
661
|
+
"potential_utf",
|
|
662
|
+
"utf8_iter",
|
|
663
|
+
"yoke",
|
|
664
|
+
"zerofrom",
|
|
665
|
+
"zerovec",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "icu_locale_core"
|
|
670
|
+
version = "2.2.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"displaydoc",
|
|
675
|
+
"litemap",
|
|
676
|
+
"tinystr",
|
|
677
|
+
"writeable",
|
|
678
|
+
"zerovec",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "icu_normalizer"
|
|
683
|
+
version = "2.2.0"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"icu_collections",
|
|
688
|
+
"icu_normalizer_data",
|
|
689
|
+
"icu_properties",
|
|
690
|
+
"icu_provider",
|
|
691
|
+
"smallvec",
|
|
692
|
+
"zerovec",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "icu_normalizer_data"
|
|
697
|
+
version = "2.2.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "icu_properties"
|
|
703
|
+
version = "2.2.0"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"icu_collections",
|
|
708
|
+
"icu_locale_core",
|
|
709
|
+
"icu_properties_data",
|
|
710
|
+
"icu_provider",
|
|
711
|
+
"zerotrie",
|
|
712
|
+
"zerovec",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "icu_properties_data"
|
|
717
|
+
version = "2.2.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "icu_provider"
|
|
723
|
+
version = "2.2.0"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"displaydoc",
|
|
728
|
+
"icu_locale_core",
|
|
729
|
+
"writeable",
|
|
730
|
+
"yoke",
|
|
731
|
+
"zerofrom",
|
|
732
|
+
"zerotrie",
|
|
733
|
+
"zerovec",
|
|
734
|
+
]
|
|
735
|
+
|
|
532
736
|
[[package]]
|
|
533
737
|
name = "id-arena"
|
|
534
738
|
version = "2.3.0"
|
|
535
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
740
|
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
537
741
|
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "idna"
|
|
744
|
+
version = "1.1.0"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"idna_adapter",
|
|
749
|
+
"smallvec",
|
|
750
|
+
"utf8_iter",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "idna_adapter"
|
|
755
|
+
version = "1.2.2"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"icu_normalizer",
|
|
760
|
+
"icu_properties",
|
|
761
|
+
]
|
|
762
|
+
|
|
538
763
|
[[package]]
|
|
539
764
|
name = "indexmap"
|
|
540
765
|
version = "2.14.0"
|
|
@@ -607,12 +832,30 @@ version = "0.12.1"
|
|
|
607
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
833
|
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
609
834
|
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "litemap"
|
|
837
|
+
version = "0.8.2"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "litrs"
|
|
843
|
+
version = "1.0.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
846
|
+
|
|
610
847
|
[[package]]
|
|
611
848
|
name = "log"
|
|
612
849
|
version = "0.4.30"
|
|
613
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
851
|
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
615
852
|
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "lzxd"
|
|
855
|
+
version = "0.2.6"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "7b29dffab797218e12e4df08ef5d15ab9efca2504038b1b32b9b32fc844b39c9"
|
|
858
|
+
|
|
616
859
|
[[package]]
|
|
617
860
|
name = "md5"
|
|
618
861
|
version = "0.7.0"
|
|
@@ -635,6 +878,18 @@ dependencies = [
|
|
|
635
878
|
"simd-adler32",
|
|
636
879
|
]
|
|
637
880
|
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "msi"
|
|
883
|
+
version = "0.10.0"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "b0325f8473ef1f5c38ee42345e2cd1678299cbbfa169d1776654a2a682867420"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"byteorder",
|
|
888
|
+
"cfb",
|
|
889
|
+
"encoding_rs",
|
|
890
|
+
"uuid",
|
|
891
|
+
]
|
|
892
|
+
|
|
638
893
|
[[package]]
|
|
639
894
|
name = "nom"
|
|
640
895
|
version = "8.0.0"
|
|
@@ -746,6 +1001,12 @@ version = "1.70.2"
|
|
|
746
1001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
1002
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
748
1003
|
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "percent-encoding"
|
|
1006
|
+
version = "2.3.2"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1009
|
+
|
|
749
1010
|
[[package]]
|
|
750
1011
|
name = "pin-project-lite"
|
|
751
1012
|
version = "0.2.17"
|
|
@@ -765,6 +1026,15 @@ dependencies = [
|
|
|
765
1026
|
"time",
|
|
766
1027
|
]
|
|
767
1028
|
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "potential_utf"
|
|
1031
|
+
version = "0.1.5"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"zerovec",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
768
1038
|
[[package]]
|
|
769
1039
|
name = "powerfmt"
|
|
770
1040
|
version = "0.2.0"
|
|
@@ -814,6 +1084,20 @@ version = "6.0.0"
|
|
|
814
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
1085
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
816
1086
|
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "ring"
|
|
1089
|
+
version = "0.17.14"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"cc",
|
|
1094
|
+
"cfg-if",
|
|
1095
|
+
"getrandom 0.2.17",
|
|
1096
|
+
"libc",
|
|
1097
|
+
"untrusted",
|
|
1098
|
+
"windows-sys 0.52.0",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
817
1101
|
[[package]]
|
|
818
1102
|
name = "rpm"
|
|
819
1103
|
version = "0.24.0"
|
|
@@ -858,7 +1142,42 @@ dependencies = [
|
|
|
858
1142
|
"errno",
|
|
859
1143
|
"libc",
|
|
860
1144
|
"linux-raw-sys",
|
|
861
|
-
"windows-sys",
|
|
1145
|
+
"windows-sys 0.61.2",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "rustls"
|
|
1150
|
+
version = "0.23.40"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"log",
|
|
1155
|
+
"once_cell",
|
|
1156
|
+
"ring",
|
|
1157
|
+
"rustls-pki-types",
|
|
1158
|
+
"rustls-webpki",
|
|
1159
|
+
"subtle",
|
|
1160
|
+
"zeroize",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "rustls-pki-types"
|
|
1165
|
+
version = "1.14.1"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"zeroize",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "rustls-webpki"
|
|
1174
|
+
version = "0.103.13"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"ring",
|
|
1179
|
+
"rustls-pki-types",
|
|
1180
|
+
"untrusted",
|
|
862
1181
|
]
|
|
863
1182
|
|
|
864
1183
|
[[package]]
|
|
@@ -937,6 +1256,12 @@ dependencies = [
|
|
|
937
1256
|
"digest",
|
|
938
1257
|
]
|
|
939
1258
|
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "sha1_smol"
|
|
1261
|
+
version = "1.0.1"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
1264
|
+
|
|
940
1265
|
[[package]]
|
|
941
1266
|
name = "sha2"
|
|
942
1267
|
version = "0.10.9"
|
|
@@ -982,12 +1307,30 @@ version = "0.4.12"
|
|
|
982
1307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
1308
|
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
984
1309
|
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "smallvec"
|
|
1312
|
+
version = "1.15.1"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "stable_deref_trait"
|
|
1318
|
+
version = "1.2.1"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1321
|
+
|
|
985
1322
|
[[package]]
|
|
986
1323
|
name = "strsim"
|
|
987
1324
|
version = "0.11.1"
|
|
988
1325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
1326
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
990
1327
|
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "subtle"
|
|
1330
|
+
version = "2.6.1"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1333
|
+
|
|
991
1334
|
[[package]]
|
|
992
1335
|
name = "syn"
|
|
993
1336
|
version = "1.0.109"
|
|
@@ -1010,6 +1353,17 @@ dependencies = [
|
|
|
1010
1353
|
"unicode-ident",
|
|
1011
1354
|
]
|
|
1012
1355
|
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "synstructure"
|
|
1358
|
+
version = "0.13.2"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"proc-macro2",
|
|
1363
|
+
"quote",
|
|
1364
|
+
"syn 2.0.117",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1013
1367
|
[[package]]
|
|
1014
1368
|
name = "tar"
|
|
1015
1369
|
version = "0.4.46"
|
|
@@ -1072,6 +1426,16 @@ dependencies = [
|
|
|
1072
1426
|
"time-core",
|
|
1073
1427
|
]
|
|
1074
1428
|
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "tinystr"
|
|
1431
|
+
version = "0.8.3"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"displaydoc",
|
|
1436
|
+
"zerovec",
|
|
1437
|
+
]
|
|
1438
|
+
|
|
1075
1439
|
[[package]]
|
|
1076
1440
|
name = "typed-path"
|
|
1077
1441
|
version = "0.12.3"
|
|
@@ -1096,6 +1460,68 @@ version = "0.2.6"
|
|
|
1096
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
1461
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1098
1462
|
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "untrusted"
|
|
1465
|
+
version = "0.9.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "ureq"
|
|
1471
|
+
version = "3.3.0"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
1474
|
+
dependencies = [
|
|
1475
|
+
"base64",
|
|
1476
|
+
"cookie_store",
|
|
1477
|
+
"flate2",
|
|
1478
|
+
"log",
|
|
1479
|
+
"percent-encoding",
|
|
1480
|
+
"rustls",
|
|
1481
|
+
"rustls-pki-types",
|
|
1482
|
+
"serde",
|
|
1483
|
+
"serde_json",
|
|
1484
|
+
"ureq-proto",
|
|
1485
|
+
"utf8-zero",
|
|
1486
|
+
"webpki-roots",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "ureq-proto"
|
|
1491
|
+
version = "0.6.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"base64",
|
|
1496
|
+
"http",
|
|
1497
|
+
"httparse",
|
|
1498
|
+
"log",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "url"
|
|
1503
|
+
version = "2.5.8"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"form_urlencoded",
|
|
1508
|
+
"idna",
|
|
1509
|
+
"percent-encoding",
|
|
1510
|
+
"serde",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "utf8-zero"
|
|
1515
|
+
version = "0.8.1"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "utf8_iter"
|
|
1521
|
+
version = "1.0.4"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1524
|
+
|
|
1099
1525
|
[[package]]
|
|
1100
1526
|
name = "utf8parse"
|
|
1101
1527
|
version = "0.2.2"
|
|
@@ -1110,6 +1536,7 @@ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
|
1110
1536
|
dependencies = [
|
|
1111
1537
|
"getrandom 0.4.2",
|
|
1112
1538
|
"js-sys",
|
|
1539
|
+
"sha1_smol",
|
|
1113
1540
|
"wasm-bindgen",
|
|
1114
1541
|
]
|
|
1115
1542
|
|
|
@@ -1222,6 +1649,25 @@ dependencies = [
|
|
|
1222
1649
|
"semver",
|
|
1223
1650
|
]
|
|
1224
1651
|
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "web-time"
|
|
1654
|
+
version = "1.1.0"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"js-sys",
|
|
1659
|
+
"wasm-bindgen",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "webpki-roots"
|
|
1664
|
+
version = "1.0.7"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"rustls-pki-types",
|
|
1669
|
+
]
|
|
1670
|
+
|
|
1225
1671
|
[[package]]
|
|
1226
1672
|
name = "windows-core"
|
|
1227
1673
|
version = "0.62.2"
|
|
@@ -1281,6 +1727,15 @@ dependencies = [
|
|
|
1281
1727
|
"windows-link",
|
|
1282
1728
|
]
|
|
1283
1729
|
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "windows-sys"
|
|
1732
|
+
version = "0.52.0"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"windows-targets",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1284
1739
|
[[package]]
|
|
1285
1740
|
name = "windows-sys"
|
|
1286
1741
|
version = "0.61.2"
|
|
@@ -1290,6 +1745,70 @@ dependencies = [
|
|
|
1290
1745
|
"windows-link",
|
|
1291
1746
|
]
|
|
1292
1747
|
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "windows-targets"
|
|
1750
|
+
version = "0.52.6"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"windows_aarch64_gnullvm",
|
|
1755
|
+
"windows_aarch64_msvc",
|
|
1756
|
+
"windows_i686_gnu",
|
|
1757
|
+
"windows_i686_gnullvm",
|
|
1758
|
+
"windows_i686_msvc",
|
|
1759
|
+
"windows_x86_64_gnu",
|
|
1760
|
+
"windows_x86_64_gnullvm",
|
|
1761
|
+
"windows_x86_64_msvc",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "windows_aarch64_gnullvm"
|
|
1766
|
+
version = "0.52.6"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "windows_aarch64_msvc"
|
|
1772
|
+
version = "0.52.6"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "windows_i686_gnu"
|
|
1778
|
+
version = "0.52.6"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "windows_i686_gnullvm"
|
|
1784
|
+
version = "0.52.6"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "windows_i686_msvc"
|
|
1790
|
+
version = "0.52.6"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "windows_x86_64_gnu"
|
|
1796
|
+
version = "0.52.6"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "windows_x86_64_gnullvm"
|
|
1802
|
+
version = "0.52.6"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "windows_x86_64_msvc"
|
|
1808
|
+
version = "0.52.6"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1811
|
+
|
|
1293
1812
|
[[package]]
|
|
1294
1813
|
name = "wit-bindgen"
|
|
1295
1814
|
version = "0.51.0"
|
|
@@ -1384,6 +1903,12 @@ dependencies = [
|
|
|
1384
1903
|
"wasmparser",
|
|
1385
1904
|
]
|
|
1386
1905
|
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "writeable"
|
|
1908
|
+
version = "0.6.3"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1911
|
+
|
|
1387
1912
|
[[package]]
|
|
1388
1913
|
name = "xattr"
|
|
1389
1914
|
version = "1.6.1"
|
|
@@ -1394,12 +1919,89 @@ dependencies = [
|
|
|
1394
1919
|
"rustix",
|
|
1395
1920
|
]
|
|
1396
1921
|
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "yoke"
|
|
1924
|
+
version = "0.8.2"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"stable_deref_trait",
|
|
1929
|
+
"yoke-derive",
|
|
1930
|
+
"zerofrom",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "yoke-derive"
|
|
1935
|
+
version = "0.8.2"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"proc-macro2",
|
|
1940
|
+
"quote",
|
|
1941
|
+
"syn 2.0.117",
|
|
1942
|
+
"synstructure",
|
|
1943
|
+
]
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "zerofrom"
|
|
1947
|
+
version = "0.1.8"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"zerofrom-derive",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "zerofrom-derive"
|
|
1956
|
+
version = "0.1.7"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"proc-macro2",
|
|
1961
|
+
"quote",
|
|
1962
|
+
"syn 2.0.117",
|
|
1963
|
+
"synstructure",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1397
1966
|
[[package]]
|
|
1398
1967
|
name = "zeroize"
|
|
1399
1968
|
version = "1.8.2"
|
|
1400
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
1970
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1402
1971
|
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "zerotrie"
|
|
1974
|
+
version = "0.2.4"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"displaydoc",
|
|
1979
|
+
"yoke",
|
|
1980
|
+
"zerofrom",
|
|
1981
|
+
]
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "zerovec"
|
|
1985
|
+
version = "0.11.6"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"yoke",
|
|
1990
|
+
"zerofrom",
|
|
1991
|
+
"zerovec-derive",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "zerovec-derive"
|
|
1996
|
+
version = "0.11.3"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"proc-macro2",
|
|
2001
|
+
"quote",
|
|
2002
|
+
"syn 2.0.117",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
1403
2005
|
[[package]]
|
|
1404
2006
|
name = "zip"
|
|
1405
2007
|
version = "8.6.0"
|