sentry-options 0.0.7__tar.gz → 0.0.9__tar.gz
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.
- {sentry_options-0.0.7 → sentry_options-0.0.9}/Cargo.lock +1274 -34
- {sentry_options-0.0.7 → sentry_options-0.0.9}/Cargo.toml +5 -2
- {sentry_options-0.0.7 → sentry_options-0.0.9}/PKG-INFO +1 -1
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/rust/src/lib.rs +1 -1
- {sentry_options-0.0.7 → sentry_options-0.0.9}/pyproject.toml +1 -1
- {sentry_options-0.0.7 → sentry_options-0.0.9}/sentry-options-validation/Cargo.toml +3 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/sentry-options-validation/src/lib.rs +140 -14
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/python/Cargo.toml +0 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/python/src/lib.rs +0 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/python/tests/options_test.py +0 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/python/uv.lock +0 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/clients/rust/Cargo.toml +0 -0
- {sentry_options-0.0.7 → sentry_options-0.0.9}/sentry-options-validation/src/namespace-schema.json +0 -0
|
@@ -2,6 +2,169 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "actix-codec"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"bitflags",
|
|
12
|
+
"bytes",
|
|
13
|
+
"futures-core",
|
|
14
|
+
"futures-sink",
|
|
15
|
+
"memchr",
|
|
16
|
+
"pin-project-lite",
|
|
17
|
+
"tokio",
|
|
18
|
+
"tokio-util",
|
|
19
|
+
"tracing",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "actix-http"
|
|
24
|
+
version = "3.11.2"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"actix-codec",
|
|
29
|
+
"actix-rt",
|
|
30
|
+
"actix-service",
|
|
31
|
+
"actix-utils",
|
|
32
|
+
"bitflags",
|
|
33
|
+
"bytes",
|
|
34
|
+
"bytestring",
|
|
35
|
+
"derive_more",
|
|
36
|
+
"encoding_rs",
|
|
37
|
+
"foldhash 0.1.5",
|
|
38
|
+
"futures-core",
|
|
39
|
+
"http 0.2.12",
|
|
40
|
+
"httparse",
|
|
41
|
+
"httpdate",
|
|
42
|
+
"itoa",
|
|
43
|
+
"language-tags",
|
|
44
|
+
"mime",
|
|
45
|
+
"percent-encoding",
|
|
46
|
+
"pin-project-lite",
|
|
47
|
+
"smallvec",
|
|
48
|
+
"tokio",
|
|
49
|
+
"tokio-util",
|
|
50
|
+
"tracing",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "actix-router"
|
|
55
|
+
version = "0.5.3"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"bytestring",
|
|
60
|
+
"cfg-if",
|
|
61
|
+
"http 0.2.12",
|
|
62
|
+
"regex-lite",
|
|
63
|
+
"serde",
|
|
64
|
+
"tracing",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "actix-rt"
|
|
69
|
+
version = "2.11.0"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"futures-core",
|
|
74
|
+
"tokio",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "actix-server"
|
|
79
|
+
version = "2.6.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"actix-rt",
|
|
84
|
+
"actix-service",
|
|
85
|
+
"actix-utils",
|
|
86
|
+
"futures-core",
|
|
87
|
+
"futures-util",
|
|
88
|
+
"mio",
|
|
89
|
+
"socket2 0.5.10",
|
|
90
|
+
"tokio",
|
|
91
|
+
"tracing",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "actix-service"
|
|
96
|
+
version = "2.0.3"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"futures-core",
|
|
101
|
+
"pin-project-lite",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "actix-utils"
|
|
106
|
+
version = "3.0.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"local-waker",
|
|
111
|
+
"pin-project-lite",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "actix-web"
|
|
116
|
+
version = "4.12.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "1654a77ba142e37f049637a3e5685f864514af11fcbc51cb51eb6596afe5b8d6"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"actix-codec",
|
|
121
|
+
"actix-http",
|
|
122
|
+
"actix-router",
|
|
123
|
+
"actix-rt",
|
|
124
|
+
"actix-server",
|
|
125
|
+
"actix-service",
|
|
126
|
+
"actix-utils",
|
|
127
|
+
"bytes",
|
|
128
|
+
"bytestring",
|
|
129
|
+
"cfg-if",
|
|
130
|
+
"derive_more",
|
|
131
|
+
"encoding_rs",
|
|
132
|
+
"foldhash 0.1.5",
|
|
133
|
+
"futures-core",
|
|
134
|
+
"futures-util",
|
|
135
|
+
"impl-more",
|
|
136
|
+
"itoa",
|
|
137
|
+
"language-tags",
|
|
138
|
+
"log",
|
|
139
|
+
"mime",
|
|
140
|
+
"once_cell",
|
|
141
|
+
"pin-project-lite",
|
|
142
|
+
"regex-lite",
|
|
143
|
+
"serde",
|
|
144
|
+
"serde_json",
|
|
145
|
+
"serde_urlencoded",
|
|
146
|
+
"smallvec",
|
|
147
|
+
"socket2 0.6.1",
|
|
148
|
+
"time",
|
|
149
|
+
"tracing",
|
|
150
|
+
"url",
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "addr2line"
|
|
155
|
+
version = "0.25.1"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
158
|
+
dependencies = [
|
|
159
|
+
"gimli",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "adler2"
|
|
164
|
+
version = "2.0.1"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
167
|
+
|
|
5
168
|
[[package]]
|
|
6
169
|
name = "ahash"
|
|
7
170
|
version = "0.8.12"
|
|
@@ -108,12 +271,33 @@ version = "1.5.0"
|
|
|
108
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
272
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
110
273
|
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "backtrace"
|
|
276
|
+
version = "0.3.76"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"addr2line",
|
|
281
|
+
"cfg-if",
|
|
282
|
+
"libc",
|
|
283
|
+
"miniz_oxide",
|
|
284
|
+
"object",
|
|
285
|
+
"rustc-demangle",
|
|
286
|
+
"windows-link",
|
|
287
|
+
]
|
|
288
|
+
|
|
111
289
|
[[package]]
|
|
112
290
|
name = "base64"
|
|
113
291
|
version = "0.22.1"
|
|
114
292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
293
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
116
294
|
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "base64ct"
|
|
297
|
+
version = "1.8.3"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
300
|
+
|
|
117
301
|
[[package]]
|
|
118
302
|
name = "bit-set"
|
|
119
303
|
version = "0.8.0"
|
|
@@ -135,6 +319,15 @@ version = "2.10.0"
|
|
|
135
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
320
|
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
137
321
|
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "block2"
|
|
324
|
+
version = "0.6.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"objc2",
|
|
329
|
+
]
|
|
330
|
+
|
|
138
331
|
[[package]]
|
|
139
332
|
name = "borrow-or-share"
|
|
140
333
|
version = "0.2.4"
|
|
@@ -159,6 +352,15 @@ version = "1.11.0"
|
|
|
159
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
353
|
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
161
354
|
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "bytestring"
|
|
357
|
+
version = "1.5.0"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"bytes",
|
|
362
|
+
]
|
|
363
|
+
|
|
162
364
|
[[package]]
|
|
163
365
|
name = "cc"
|
|
164
366
|
version = "1.2.52"
|
|
@@ -175,6 +377,12 @@ version = "1.0.4"
|
|
|
175
377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
378
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
177
379
|
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "cfg_aliases"
|
|
382
|
+
version = "0.2.1"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
385
|
+
|
|
178
386
|
[[package]]
|
|
179
387
|
name = "chrono"
|
|
180
388
|
version = "0.4.43"
|
|
@@ -182,7 +390,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
182
390
|
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
183
391
|
dependencies = [
|
|
184
392
|
"iana-time-zone",
|
|
393
|
+
"js-sys",
|
|
185
394
|
"num-traits",
|
|
395
|
+
"wasm-bindgen",
|
|
186
396
|
"windows-link",
|
|
187
397
|
]
|
|
188
398
|
|
|
@@ -232,12 +442,93 @@ version = "1.0.4"
|
|
|
232
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
443
|
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
234
444
|
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "convert_case"
|
|
447
|
+
version = "0.10.0"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"unicode-segmentation",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "core-foundation"
|
|
456
|
+
version = "0.9.4"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"core-foundation-sys",
|
|
461
|
+
"libc",
|
|
462
|
+
]
|
|
463
|
+
|
|
235
464
|
[[package]]
|
|
236
465
|
name = "core-foundation-sys"
|
|
237
466
|
version = "0.8.7"
|
|
238
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
468
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
240
469
|
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "debugid"
|
|
472
|
+
version = "0.8.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"serde",
|
|
477
|
+
"uuid",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "der"
|
|
482
|
+
version = "0.7.10"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"pem-rfc7468",
|
|
487
|
+
"zeroize",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "deranged"
|
|
492
|
+
version = "0.5.5"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"powerfmt",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "derive_more"
|
|
501
|
+
version = "2.1.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"derive_more-impl",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "derive_more-impl"
|
|
510
|
+
version = "2.1.1"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"convert_case",
|
|
515
|
+
"proc-macro2",
|
|
516
|
+
"quote",
|
|
517
|
+
"rustc_version",
|
|
518
|
+
"syn",
|
|
519
|
+
"unicode-xid",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "dispatch2"
|
|
524
|
+
version = "0.3.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"bitflags",
|
|
529
|
+
"objc2",
|
|
530
|
+
]
|
|
531
|
+
|
|
241
532
|
[[package]]
|
|
242
533
|
name = "displaydoc"
|
|
243
534
|
version = "0.2.5"
|
|
@@ -258,6 +549,15 @@ dependencies = [
|
|
|
258
549
|
"serde",
|
|
259
550
|
]
|
|
260
551
|
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "encoding_rs"
|
|
554
|
+
version = "0.8.35"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"cfg-if",
|
|
559
|
+
]
|
|
560
|
+
|
|
261
561
|
[[package]]
|
|
262
562
|
name = "equivalent"
|
|
263
563
|
version = "1.0.2"
|
|
@@ -276,7 +576,7 @@ dependencies = [
|
|
|
276
576
|
|
|
277
577
|
[[package]]
|
|
278
578
|
name = "example"
|
|
279
|
-
version = "0.0.
|
|
579
|
+
version = "0.0.9"
|
|
280
580
|
dependencies = [
|
|
281
581
|
"anyhow",
|
|
282
582
|
"sentry-options",
|
|
@@ -306,6 +606,18 @@ version = "0.1.7"
|
|
|
306
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
607
|
checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
|
|
308
608
|
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "findshlibs"
|
|
611
|
+
version = "0.10.2"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"cc",
|
|
616
|
+
"lazy_static",
|
|
617
|
+
"libc",
|
|
618
|
+
"winapi",
|
|
619
|
+
]
|
|
620
|
+
|
|
309
621
|
[[package]]
|
|
310
622
|
name = "fluent-uri"
|
|
311
623
|
version = "0.4.1"
|
|
@@ -323,12 +635,33 @@ version = "1.0.7"
|
|
|
323
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
636
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
325
637
|
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "foldhash"
|
|
640
|
+
version = "0.1.5"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
643
|
+
|
|
326
644
|
[[package]]
|
|
327
645
|
name = "foldhash"
|
|
328
646
|
version = "0.2.0"
|
|
329
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
648
|
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
331
649
|
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "foreign-types"
|
|
652
|
+
version = "0.3.2"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"foreign-types-shared",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "foreign-types-shared"
|
|
661
|
+
version = "0.1.1"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
664
|
+
|
|
332
665
|
[[package]]
|
|
333
666
|
name = "form_urlencoded"
|
|
334
667
|
version = "1.2.2"
|
|
@@ -412,6 +745,12 @@ dependencies = [
|
|
|
412
745
|
"wasm-bindgen",
|
|
413
746
|
]
|
|
414
747
|
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "gimli"
|
|
750
|
+
version = "0.32.3"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
753
|
+
|
|
415
754
|
[[package]]
|
|
416
755
|
name = "hashbrown"
|
|
417
756
|
version = "0.16.0"
|
|
@@ -420,7 +759,7 @@ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
|
420
759
|
dependencies = [
|
|
421
760
|
"allocator-api2",
|
|
422
761
|
"equivalent",
|
|
423
|
-
"foldhash",
|
|
762
|
+
"foldhash 0.2.0",
|
|
424
763
|
]
|
|
425
764
|
|
|
426
765
|
[[package]]
|
|
@@ -429,6 +768,34 @@ version = "0.5.0"
|
|
|
429
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
769
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
431
770
|
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "hex"
|
|
773
|
+
version = "0.4.3"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "hostname"
|
|
779
|
+
version = "0.4.2"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"cfg-if",
|
|
784
|
+
"libc",
|
|
785
|
+
"windows-link",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "http"
|
|
790
|
+
version = "0.2.12"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"bytes",
|
|
795
|
+
"fnv",
|
|
796
|
+
"itoa",
|
|
797
|
+
]
|
|
798
|
+
|
|
432
799
|
[[package]]
|
|
433
800
|
name = "http"
|
|
434
801
|
version = "1.3.1"
|
|
@@ -447,7 +814,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
447
814
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
448
815
|
dependencies = [
|
|
449
816
|
"bytes",
|
|
450
|
-
"http",
|
|
817
|
+
"http 1.3.1",
|
|
451
818
|
]
|
|
452
819
|
|
|
453
820
|
[[package]]
|
|
@@ -458,7 +825,7 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
|
458
825
|
dependencies = [
|
|
459
826
|
"bytes",
|
|
460
827
|
"futures-core",
|
|
461
|
-
"http",
|
|
828
|
+
"http 1.3.1",
|
|
462
829
|
"http-body",
|
|
463
830
|
"pin-project-lite",
|
|
464
831
|
]
|
|
@@ -469,6 +836,12 @@ version = "1.10.1"
|
|
|
469
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
837
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
471
838
|
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "httpdate"
|
|
841
|
+
version = "1.0.3"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
844
|
+
|
|
472
845
|
[[package]]
|
|
473
846
|
name = "hyper"
|
|
474
847
|
version = "1.8.1"
|
|
@@ -479,7 +852,7 @@ dependencies = [
|
|
|
479
852
|
"bytes",
|
|
480
853
|
"futures-channel",
|
|
481
854
|
"futures-core",
|
|
482
|
-
"http",
|
|
855
|
+
"http 1.3.1",
|
|
483
856
|
"http-body",
|
|
484
857
|
"httparse",
|
|
485
858
|
"itoa",
|
|
@@ -490,6 +863,22 @@ dependencies = [
|
|
|
490
863
|
"want",
|
|
491
864
|
]
|
|
492
865
|
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "hyper-tls"
|
|
868
|
+
version = "0.6.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"bytes",
|
|
873
|
+
"http-body-util",
|
|
874
|
+
"hyper",
|
|
875
|
+
"hyper-util",
|
|
876
|
+
"native-tls",
|
|
877
|
+
"tokio",
|
|
878
|
+
"tokio-native-tls",
|
|
879
|
+
"tower-service",
|
|
880
|
+
]
|
|
881
|
+
|
|
493
882
|
[[package]]
|
|
494
883
|
name = "hyper-util"
|
|
495
884
|
version = "0.1.18"
|
|
@@ -501,14 +890,14 @@ dependencies = [
|
|
|
501
890
|
"futures-channel",
|
|
502
891
|
"futures-core",
|
|
503
892
|
"futures-util",
|
|
504
|
-
"http",
|
|
893
|
+
"http 1.3.1",
|
|
505
894
|
"http-body",
|
|
506
895
|
"hyper",
|
|
507
896
|
"ipnet",
|
|
508
897
|
"libc",
|
|
509
898
|
"percent-encoding",
|
|
510
899
|
"pin-project-lite",
|
|
511
|
-
"socket2",
|
|
900
|
+
"socket2 0.6.1",
|
|
512
901
|
"tokio",
|
|
513
902
|
"tower-service",
|
|
514
903
|
"tracing",
|
|
@@ -640,6 +1029,12 @@ dependencies = [
|
|
|
640
1029
|
"icu_properties",
|
|
641
1030
|
]
|
|
642
1031
|
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "impl-more"
|
|
1034
|
+
version = "0.1.9"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
1037
|
+
|
|
643
1038
|
[[package]]
|
|
644
1039
|
name = "indexmap"
|
|
645
1040
|
version = "2.12.0"
|
|
@@ -725,6 +1120,12 @@ dependencies = [
|
|
|
725
1120
|
"uuid-simd",
|
|
726
1121
|
]
|
|
727
1122
|
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "language-tags"
|
|
1125
|
+
version = "0.3.2"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
|
|
1128
|
+
|
|
728
1129
|
[[package]]
|
|
729
1130
|
name = "lazy_static"
|
|
730
1131
|
version = "1.5.0"
|
|
@@ -749,6 +1150,12 @@ version = "0.8.1"
|
|
|
749
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
1151
|
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
751
1152
|
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "local-waker"
|
|
1155
|
+
version = "0.1.4"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
|
|
1158
|
+
|
|
752
1159
|
[[package]]
|
|
753
1160
|
name = "lock_api"
|
|
754
1161
|
version = "0.4.14"
|
|
@@ -780,16 +1187,61 @@ dependencies = [
|
|
|
780
1187
|
]
|
|
781
1188
|
|
|
782
1189
|
[[package]]
|
|
783
|
-
name = "
|
|
784
|
-
version = "
|
|
1190
|
+
name = "mime"
|
|
1191
|
+
version = "0.3.17"
|
|
785
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
787
|
-
|
|
788
|
-
|
|
1193
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "miniz_oxide"
|
|
1197
|
+
version = "0.8.9"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"adler2",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "mio"
|
|
1206
|
+
version = "1.1.0"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"libc",
|
|
1211
|
+
"log",
|
|
789
1212
|
"wasi",
|
|
790
1213
|
"windows-sys 0.61.2",
|
|
791
1214
|
]
|
|
792
1215
|
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "native-tls"
|
|
1218
|
+
version = "0.2.14"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1221
|
+
dependencies = [
|
|
1222
|
+
"libc",
|
|
1223
|
+
"log",
|
|
1224
|
+
"openssl",
|
|
1225
|
+
"openssl-probe",
|
|
1226
|
+
"openssl-sys",
|
|
1227
|
+
"schannel",
|
|
1228
|
+
"security-framework",
|
|
1229
|
+
"security-framework-sys",
|
|
1230
|
+
"tempfile",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "nix"
|
|
1235
|
+
version = "0.30.1"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"bitflags",
|
|
1240
|
+
"cfg-if",
|
|
1241
|
+
"cfg_aliases",
|
|
1242
|
+
"libc",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
793
1245
|
[[package]]
|
|
794
1246
|
name = "num"
|
|
795
1247
|
version = "0.4.3"
|
|
@@ -829,6 +1281,12 @@ dependencies = [
|
|
|
829
1281
|
"num-traits",
|
|
830
1282
|
]
|
|
831
1283
|
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "num-conv"
|
|
1286
|
+
version = "0.1.0"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1289
|
+
|
|
832
1290
|
[[package]]
|
|
833
1291
|
name = "num-integer"
|
|
834
1292
|
version = "0.1.46"
|
|
@@ -869,6 +1327,174 @@ dependencies = [
|
|
|
869
1327
|
"autocfg",
|
|
870
1328
|
]
|
|
871
1329
|
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "objc2"
|
|
1332
|
+
version = "0.6.3"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"objc2-encode",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "objc2-cloud-kit"
|
|
1341
|
+
version = "0.3.2"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"bitflags",
|
|
1346
|
+
"objc2",
|
|
1347
|
+
"objc2-foundation",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "objc2-core-data"
|
|
1352
|
+
version = "0.3.2"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"objc2",
|
|
1357
|
+
"objc2-foundation",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "objc2-core-foundation"
|
|
1362
|
+
version = "0.3.2"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"bitflags",
|
|
1367
|
+
"dispatch2",
|
|
1368
|
+
"objc2",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "objc2-core-graphics"
|
|
1373
|
+
version = "0.3.2"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"bitflags",
|
|
1378
|
+
"dispatch2",
|
|
1379
|
+
"objc2",
|
|
1380
|
+
"objc2-core-foundation",
|
|
1381
|
+
"objc2-io-surface",
|
|
1382
|
+
]
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "objc2-core-image"
|
|
1386
|
+
version = "0.3.2"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"objc2",
|
|
1391
|
+
"objc2-foundation",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "objc2-core-location"
|
|
1396
|
+
version = "0.3.2"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"objc2",
|
|
1401
|
+
"objc2-foundation",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "objc2-core-text"
|
|
1406
|
+
version = "0.3.2"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"bitflags",
|
|
1411
|
+
"objc2",
|
|
1412
|
+
"objc2-core-foundation",
|
|
1413
|
+
"objc2-core-graphics",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "objc2-encode"
|
|
1418
|
+
version = "4.1.0"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "objc2-foundation"
|
|
1424
|
+
version = "0.3.2"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"bitflags",
|
|
1429
|
+
"block2",
|
|
1430
|
+
"libc",
|
|
1431
|
+
"objc2",
|
|
1432
|
+
"objc2-core-foundation",
|
|
1433
|
+
]
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "objc2-io-surface"
|
|
1437
|
+
version = "0.3.2"
|
|
1438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
1440
|
+
dependencies = [
|
|
1441
|
+
"bitflags",
|
|
1442
|
+
"objc2",
|
|
1443
|
+
"objc2-core-foundation",
|
|
1444
|
+
]
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "objc2-quartz-core"
|
|
1448
|
+
version = "0.3.2"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"bitflags",
|
|
1453
|
+
"objc2",
|
|
1454
|
+
"objc2-core-foundation",
|
|
1455
|
+
"objc2-foundation",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "objc2-ui-kit"
|
|
1460
|
+
version = "0.3.2"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"bitflags",
|
|
1465
|
+
"block2",
|
|
1466
|
+
"objc2",
|
|
1467
|
+
"objc2-cloud-kit",
|
|
1468
|
+
"objc2-core-data",
|
|
1469
|
+
"objc2-core-foundation",
|
|
1470
|
+
"objc2-core-graphics",
|
|
1471
|
+
"objc2-core-image",
|
|
1472
|
+
"objc2-core-location",
|
|
1473
|
+
"objc2-core-text",
|
|
1474
|
+
"objc2-foundation",
|
|
1475
|
+
"objc2-quartz-core",
|
|
1476
|
+
"objc2-user-notifications",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "objc2-user-notifications"
|
|
1481
|
+
version = "0.3.2"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
|
|
1484
|
+
dependencies = [
|
|
1485
|
+
"objc2",
|
|
1486
|
+
"objc2-foundation",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "object"
|
|
1491
|
+
version = "0.37.3"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"memchr",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
872
1498
|
[[package]]
|
|
873
1499
|
name = "once_cell"
|
|
874
1500
|
version = "1.21.3"
|
|
@@ -881,6 +1507,76 @@ version = "1.70.2"
|
|
|
881
1507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
1508
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
883
1509
|
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "openssl"
|
|
1512
|
+
version = "0.10.75"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"bitflags",
|
|
1517
|
+
"cfg-if",
|
|
1518
|
+
"foreign-types",
|
|
1519
|
+
"libc",
|
|
1520
|
+
"once_cell",
|
|
1521
|
+
"openssl-macros",
|
|
1522
|
+
"openssl-sys",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "openssl-macros"
|
|
1527
|
+
version = "0.1.1"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"proc-macro2",
|
|
1532
|
+
"quote",
|
|
1533
|
+
"syn",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "openssl-probe"
|
|
1538
|
+
version = "0.1.6"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "openssl-src"
|
|
1544
|
+
version = "300.5.4+3.5.4"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"cc",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "openssl-sys"
|
|
1553
|
+
version = "0.9.111"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"cc",
|
|
1558
|
+
"libc",
|
|
1559
|
+
"openssl-src",
|
|
1560
|
+
"pkg-config",
|
|
1561
|
+
"vcpkg",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "os_info"
|
|
1566
|
+
version = "3.14.0"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "e4022a17595a00d6a369236fdae483f0de7f0a339960a53118b818238e132224"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"android_system_properties",
|
|
1571
|
+
"log",
|
|
1572
|
+
"nix",
|
|
1573
|
+
"objc2",
|
|
1574
|
+
"objc2-foundation",
|
|
1575
|
+
"objc2-ui-kit",
|
|
1576
|
+
"serde",
|
|
1577
|
+
"windows-sys 0.61.2",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
884
1580
|
[[package]]
|
|
885
1581
|
name = "outref"
|
|
886
1582
|
version = "0.5.2"
|
|
@@ -910,6 +1606,15 @@ dependencies = [
|
|
|
910
1606
|
"windows-link",
|
|
911
1607
|
]
|
|
912
1608
|
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "pem-rfc7468"
|
|
1611
|
+
version = "0.7.0"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"base64ct",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
913
1618
|
[[package]]
|
|
914
1619
|
name = "percent-encoding"
|
|
915
1620
|
version = "2.3.2"
|
|
@@ -928,6 +1633,12 @@ version = "0.1.0"
|
|
|
928
1633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
1634
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
930
1635
|
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "pkg-config"
|
|
1638
|
+
version = "0.3.32"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1641
|
+
|
|
931
1642
|
[[package]]
|
|
932
1643
|
name = "portable-atomic"
|
|
933
1644
|
version = "1.11.1"
|
|
@@ -943,6 +1654,21 @@ dependencies = [
|
|
|
943
1654
|
"zerovec",
|
|
944
1655
|
]
|
|
945
1656
|
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "powerfmt"
|
|
1659
|
+
version = "0.2.0"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "ppv-lite86"
|
|
1665
|
+
version = "0.2.21"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1668
|
+
dependencies = [
|
|
1669
|
+
"zerocopy",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
946
1672
|
[[package]]
|
|
947
1673
|
name = "proc-macro2"
|
|
948
1674
|
version = "1.0.103"
|
|
@@ -1028,6 +1754,35 @@ version = "5.3.0"
|
|
|
1028
1754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
1755
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1030
1756
|
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "rand"
|
|
1759
|
+
version = "0.9.2"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"rand_chacha",
|
|
1764
|
+
"rand_core",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "rand_chacha"
|
|
1769
|
+
version = "0.9.0"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"ppv-lite86",
|
|
1774
|
+
"rand_core",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "rand_core"
|
|
1779
|
+
version = "0.9.5"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"getrandom",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1031
1786
|
[[package]]
|
|
1032
1787
|
name = "redox_syscall"
|
|
1033
1788
|
version = "0.5.18"
|
|
@@ -1095,6 +1850,12 @@ dependencies = [
|
|
|
1095
1850
|
"regex-syntax",
|
|
1096
1851
|
]
|
|
1097
1852
|
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "regex-lite"
|
|
1855
|
+
version = "0.1.8"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
1858
|
+
|
|
1098
1859
|
[[package]]
|
|
1099
1860
|
name = "regex-syntax"
|
|
1100
1861
|
version = "0.8.8"
|
|
@@ -1103,29 +1864,33 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
|
1103
1864
|
|
|
1104
1865
|
[[package]]
|
|
1105
1866
|
name = "reqwest"
|
|
1106
|
-
version = "0.12.
|
|
1867
|
+
version = "0.12.28"
|
|
1107
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
-
checksum = "
|
|
1869
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1109
1870
|
dependencies = [
|
|
1110
1871
|
"base64",
|
|
1111
1872
|
"bytes",
|
|
1112
1873
|
"futures-channel",
|
|
1113
1874
|
"futures-core",
|
|
1114
1875
|
"futures-util",
|
|
1115
|
-
"http",
|
|
1876
|
+
"http 1.3.1",
|
|
1116
1877
|
"http-body",
|
|
1117
1878
|
"http-body-util",
|
|
1118
1879
|
"hyper",
|
|
1880
|
+
"hyper-tls",
|
|
1119
1881
|
"hyper-util",
|
|
1120
1882
|
"js-sys",
|
|
1121
1883
|
"log",
|
|
1884
|
+
"native-tls",
|
|
1122
1885
|
"percent-encoding",
|
|
1123
1886
|
"pin-project-lite",
|
|
1887
|
+
"rustls-pki-types",
|
|
1124
1888
|
"serde",
|
|
1125
1889
|
"serde_json",
|
|
1126
1890
|
"serde_urlencoded",
|
|
1127
1891
|
"sync_wrapper",
|
|
1128
1892
|
"tokio",
|
|
1893
|
+
"tokio-native-tls",
|
|
1129
1894
|
"tower",
|
|
1130
1895
|
"tower-http",
|
|
1131
1896
|
"tower-service",
|
|
@@ -1135,6 +1900,21 @@ dependencies = [
|
|
|
1135
1900
|
"web-sys",
|
|
1136
1901
|
]
|
|
1137
1902
|
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "rustc-demangle"
|
|
1905
|
+
version = "0.1.27"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "rustc_version"
|
|
1911
|
+
version = "0.4.1"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"semver",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1138
1918
|
[[package]]
|
|
1139
1919
|
name = "rustix"
|
|
1140
1920
|
version = "1.1.2"
|
|
@@ -1148,6 +1928,15 @@ dependencies = [
|
|
|
1148
1928
|
"windows-sys 0.61.2",
|
|
1149
1929
|
]
|
|
1150
1930
|
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "rustls-pki-types"
|
|
1933
|
+
version = "1.14.0"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1936
|
+
dependencies = [
|
|
1937
|
+
"zeroize",
|
|
1938
|
+
]
|
|
1939
|
+
|
|
1151
1940
|
[[package]]
|
|
1152
1941
|
name = "rustversion"
|
|
1153
1942
|
version = "1.0.22"
|
|
@@ -1169,15 +1958,134 @@ dependencies = [
|
|
|
1169
1958
|
"winapi-util",
|
|
1170
1959
|
]
|
|
1171
1960
|
|
|
1961
|
+
[[package]]
|
|
1962
|
+
name = "schannel"
|
|
1963
|
+
version = "0.1.28"
|
|
1964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1966
|
+
dependencies = [
|
|
1967
|
+
"windows-sys 0.61.2",
|
|
1968
|
+
]
|
|
1969
|
+
|
|
1172
1970
|
[[package]]
|
|
1173
1971
|
name = "scopeguard"
|
|
1174
1972
|
version = "1.2.0"
|
|
1175
1973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
1974
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1177
1975
|
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "security-framework"
|
|
1978
|
+
version = "2.11.1"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"bitflags",
|
|
1983
|
+
"core-foundation",
|
|
1984
|
+
"core-foundation-sys",
|
|
1985
|
+
"libc",
|
|
1986
|
+
"security-framework-sys",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "security-framework-sys"
|
|
1991
|
+
version = "2.15.0"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"core-foundation-sys",
|
|
1996
|
+
"libc",
|
|
1997
|
+
]
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "semver"
|
|
2001
|
+
version = "1.0.27"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "sentry"
|
|
2007
|
+
version = "0.46.1"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "2f925d575b468e88b079faf590a8dd0c9c99e2ec29e9bab663ceb8b45056312f"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"httpdate",
|
|
2012
|
+
"native-tls",
|
|
2013
|
+
"reqwest",
|
|
2014
|
+
"sentry-actix",
|
|
2015
|
+
"sentry-backtrace",
|
|
2016
|
+
"sentry-contexts",
|
|
2017
|
+
"sentry-core",
|
|
2018
|
+
"sentry-debug-images",
|
|
2019
|
+
"sentry-panic",
|
|
2020
|
+
"sentry-tracing",
|
|
2021
|
+
"tokio",
|
|
2022
|
+
"ureq",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "sentry-actix"
|
|
2027
|
+
version = "0.46.1"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "18bac0f6b8621fa0f85e298901e51161205788322e1a995e3764329020368058"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"actix-http",
|
|
2032
|
+
"actix-web",
|
|
2033
|
+
"bytes",
|
|
2034
|
+
"futures-util",
|
|
2035
|
+
"sentry-core",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "sentry-backtrace"
|
|
2040
|
+
version = "0.46.1"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "6cb1ef7534f583af20452b1b1bf610a60ed9c8dd2d8485e7bd064efc556a78fb"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"backtrace",
|
|
2045
|
+
"regex",
|
|
2046
|
+
"sentry-core",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "sentry-contexts"
|
|
2051
|
+
version = "0.46.1"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "ebd6be899d9938390b6d1ec71e2f53bd9e57b6a9d8b1d5b049e5c364e7da9078"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"hostname",
|
|
2056
|
+
"libc",
|
|
2057
|
+
"os_info",
|
|
2058
|
+
"rustc_version",
|
|
2059
|
+
"sentry-core",
|
|
2060
|
+
"uname",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "sentry-core"
|
|
2065
|
+
version = "0.46.1"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "26ab054c34b87f96c3e4701bea1888317cde30cc7e4a6136d2c48454ab96661c"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"rand",
|
|
2070
|
+
"sentry-types",
|
|
2071
|
+
"serde",
|
|
2072
|
+
"serde_json",
|
|
2073
|
+
"url",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "sentry-debug-images"
|
|
2078
|
+
version = "0.46.1"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "5637ec550dc6f8c49a711537950722d3fc4baa6fd433c371912104eaff31e2a5"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"findshlibs",
|
|
2083
|
+
"sentry-core",
|
|
2084
|
+
]
|
|
2085
|
+
|
|
1178
2086
|
[[package]]
|
|
1179
2087
|
name = "sentry-options"
|
|
1180
|
-
version = "0.0.
|
|
2088
|
+
version = "0.0.9"
|
|
1181
2089
|
dependencies = [
|
|
1182
2090
|
"sentry-options-validation",
|
|
1183
2091
|
"serde_json",
|
|
@@ -1187,7 +2095,7 @@ dependencies = [
|
|
|
1187
2095
|
|
|
1188
2096
|
[[package]]
|
|
1189
2097
|
name = "sentry-options-cli"
|
|
1190
|
-
version = "0.0.
|
|
2098
|
+
version = "0.0.9"
|
|
1191
2099
|
dependencies = [
|
|
1192
2100
|
"chrono",
|
|
1193
2101
|
"clap",
|
|
@@ -1202,7 +2110,7 @@ dependencies = [
|
|
|
1202
2110
|
|
|
1203
2111
|
[[package]]
|
|
1204
2112
|
name = "sentry-options-python"
|
|
1205
|
-
version = "0.0.
|
|
2113
|
+
version = "0.0.9"
|
|
1206
2114
|
dependencies = [
|
|
1207
2115
|
"pyo3",
|
|
1208
2116
|
"sentry-options",
|
|
@@ -1211,16 +2119,59 @@ dependencies = [
|
|
|
1211
2119
|
|
|
1212
2120
|
[[package]]
|
|
1213
2121
|
name = "sentry-options-validation"
|
|
1214
|
-
version = "0.0.
|
|
2122
|
+
version = "0.0.9"
|
|
1215
2123
|
dependencies = [
|
|
1216
2124
|
"anyhow",
|
|
2125
|
+
"chrono",
|
|
1217
2126
|
"jsonschema",
|
|
2127
|
+
"openssl",
|
|
2128
|
+
"sentry",
|
|
1218
2129
|
"serde",
|
|
1219
2130
|
"serde_json",
|
|
1220
2131
|
"tempfile",
|
|
1221
2132
|
"thiserror",
|
|
1222
2133
|
]
|
|
1223
2134
|
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "sentry-panic"
|
|
2137
|
+
version = "0.46.1"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "3f02c7162f7b69b8de872b439d4696dc1d65f80b13ddd3c3831723def4756b63"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"sentry-backtrace",
|
|
2142
|
+
"sentry-core",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "sentry-tracing"
|
|
2147
|
+
version = "0.46.1"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "e1dd47df349a80025819f3d25c3d2f751df705d49c65a4cdc0f130f700972a48"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"bitflags",
|
|
2152
|
+
"sentry-backtrace",
|
|
2153
|
+
"sentry-core",
|
|
2154
|
+
"tracing-core",
|
|
2155
|
+
"tracing-subscriber",
|
|
2156
|
+
]
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "sentry-types"
|
|
2160
|
+
version = "0.46.1"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "eecbd63e9d15a26a40675ed180d376fcb434635d2e33de1c24003f61e3e2230d"
|
|
2163
|
+
dependencies = [
|
|
2164
|
+
"debugid",
|
|
2165
|
+
"hex",
|
|
2166
|
+
"rand",
|
|
2167
|
+
"serde",
|
|
2168
|
+
"serde_json",
|
|
2169
|
+
"thiserror",
|
|
2170
|
+
"time",
|
|
2171
|
+
"url",
|
|
2172
|
+
"uuid",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
1224
2175
|
[[package]]
|
|
1225
2176
|
name = "serde"
|
|
1226
2177
|
version = "1.0.228"
|
|
@@ -1295,6 +2246,16 @@ version = "1.3.0"
|
|
|
1295
2246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
2247
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1297
2248
|
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "signal-hook-registry"
|
|
2251
|
+
version = "1.4.8"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2254
|
+
dependencies = [
|
|
2255
|
+
"errno",
|
|
2256
|
+
"libc",
|
|
2257
|
+
]
|
|
2258
|
+
|
|
1298
2259
|
[[package]]
|
|
1299
2260
|
name = "slab"
|
|
1300
2261
|
version = "0.4.11"
|
|
@@ -1307,6 +2268,16 @@ version = "1.15.1"
|
|
|
1307
2268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
2269
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1309
2270
|
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "socket2"
|
|
2273
|
+
version = "0.5.10"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"libc",
|
|
2278
|
+
"windows-sys 0.52.0",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
1310
2281
|
[[package]]
|
|
1311
2282
|
name = "socket2"
|
|
1312
2283
|
version = "0.6.1"
|
|
@@ -1399,6 +2370,37 @@ dependencies = [
|
|
|
1399
2370
|
"syn",
|
|
1400
2371
|
]
|
|
1401
2372
|
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "time"
|
|
2375
|
+
version = "0.3.45"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
2378
|
+
dependencies = [
|
|
2379
|
+
"deranged",
|
|
2380
|
+
"itoa",
|
|
2381
|
+
"num-conv",
|
|
2382
|
+
"powerfmt",
|
|
2383
|
+
"serde_core",
|
|
2384
|
+
"time-core",
|
|
2385
|
+
"time-macros",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "time-core"
|
|
2390
|
+
version = "0.1.7"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "time-macros"
|
|
2396
|
+
version = "0.2.25"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"num-conv",
|
|
2401
|
+
"time-core",
|
|
2402
|
+
]
|
|
2403
|
+
|
|
1402
2404
|
[[package]]
|
|
1403
2405
|
name = "tinystr"
|
|
1404
2406
|
version = "0.8.2"
|
|
@@ -1415,13 +2417,39 @@ version = "1.48.0"
|
|
|
1415
2417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
2418
|
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1417
2419
|
dependencies = [
|
|
2420
|
+
"bytes",
|
|
1418
2421
|
"libc",
|
|
1419
2422
|
"mio",
|
|
2423
|
+
"parking_lot",
|
|
1420
2424
|
"pin-project-lite",
|
|
1421
|
-
"
|
|
2425
|
+
"signal-hook-registry",
|
|
2426
|
+
"socket2 0.6.1",
|
|
1422
2427
|
"windows-sys 0.61.2",
|
|
1423
2428
|
]
|
|
1424
2429
|
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "tokio-native-tls"
|
|
2432
|
+
version = "0.3.1"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"native-tls",
|
|
2437
|
+
"tokio",
|
|
2438
|
+
]
|
|
2439
|
+
|
|
2440
|
+
[[package]]
|
|
2441
|
+
name = "tokio-util"
|
|
2442
|
+
version = "0.7.18"
|
|
2443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2445
|
+
dependencies = [
|
|
2446
|
+
"bytes",
|
|
2447
|
+
"futures-core",
|
|
2448
|
+
"futures-sink",
|
|
2449
|
+
"pin-project-lite",
|
|
2450
|
+
"tokio",
|
|
2451
|
+
]
|
|
2452
|
+
|
|
1425
2453
|
[[package]]
|
|
1426
2454
|
name = "tower"
|
|
1427
2455
|
version = "0.5.2"
|
|
@@ -1439,14 +2467,14 @@ dependencies = [
|
|
|
1439
2467
|
|
|
1440
2468
|
[[package]]
|
|
1441
2469
|
name = "tower-http"
|
|
1442
|
-
version = "0.6.
|
|
2470
|
+
version = "0.6.8"
|
|
1443
2471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
2472
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1445
2473
|
dependencies = [
|
|
1446
2474
|
"bitflags",
|
|
1447
2475
|
"bytes",
|
|
1448
2476
|
"futures-util",
|
|
1449
|
-
"http",
|
|
2477
|
+
"http 1.3.1",
|
|
1450
2478
|
"http-body",
|
|
1451
2479
|
"iri-string",
|
|
1452
2480
|
"pin-project-lite",
|
|
@@ -1473,17 +2501,40 @@ version = "0.1.41"
|
|
|
1473
2501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
2502
|
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1475
2503
|
dependencies = [
|
|
2504
|
+
"log",
|
|
1476
2505
|
"pin-project-lite",
|
|
2506
|
+
"tracing-attributes",
|
|
1477
2507
|
"tracing-core",
|
|
1478
2508
|
]
|
|
1479
2509
|
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "tracing-attributes"
|
|
2512
|
+
version = "0.1.31"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2515
|
+
dependencies = [
|
|
2516
|
+
"proc-macro2",
|
|
2517
|
+
"quote",
|
|
2518
|
+
"syn",
|
|
2519
|
+
]
|
|
2520
|
+
|
|
1480
2521
|
[[package]]
|
|
1481
2522
|
name = "tracing-core"
|
|
1482
|
-
version = "0.1.
|
|
2523
|
+
version = "0.1.36"
|
|
1483
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
-
checksum = "
|
|
2525
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1485
2526
|
dependencies = [
|
|
1486
2527
|
"once_cell",
|
|
2528
|
+
"valuable",
|
|
2529
|
+
]
|
|
2530
|
+
|
|
2531
|
+
[[package]]
|
|
2532
|
+
name = "tracing-subscriber"
|
|
2533
|
+
version = "0.3.22"
|
|
2534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2536
|
+
dependencies = [
|
|
2537
|
+
"tracing-core",
|
|
1487
2538
|
]
|
|
1488
2539
|
|
|
1489
2540
|
[[package]]
|
|
@@ -1492,6 +2543,15 @@ version = "0.2.5"
|
|
|
1492
2543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
2544
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1494
2545
|
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "uname"
|
|
2548
|
+
version = "0.1.1"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"libc",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
1495
2555
|
[[package]]
|
|
1496
2556
|
name = "unicode-general-category"
|
|
1497
2557
|
version = "1.1.0"
|
|
@@ -1504,6 +2564,18 @@ version = "1.0.22"
|
|
|
1504
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
2565
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1506
2566
|
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "unicode-segmentation"
|
|
2569
|
+
version = "1.12.0"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
2572
|
+
|
|
2573
|
+
[[package]]
|
|
2574
|
+
name = "unicode-xid"
|
|
2575
|
+
version = "0.2.6"
|
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2578
|
+
|
|
1507
2579
|
[[package]]
|
|
1508
2580
|
name = "unindent"
|
|
1509
2581
|
version = "0.2.4"
|
|
@@ -1516,6 +2588,35 @@ version = "0.2.11"
|
|
|
1516
2588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
2589
|
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1518
2590
|
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "ureq"
|
|
2593
|
+
version = "3.1.4"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "d39cb1dbab692d82a977c0392ffac19e188bd9186a9f32806f0aaa859d75585a"
|
|
2596
|
+
dependencies = [
|
|
2597
|
+
"base64",
|
|
2598
|
+
"der",
|
|
2599
|
+
"log",
|
|
2600
|
+
"native-tls",
|
|
2601
|
+
"percent-encoding",
|
|
2602
|
+
"rustls-pki-types",
|
|
2603
|
+
"ureq-proto",
|
|
2604
|
+
"utf-8",
|
|
2605
|
+
"webpki-root-certs",
|
|
2606
|
+
]
|
|
2607
|
+
|
|
2608
|
+
[[package]]
|
|
2609
|
+
name = "ureq-proto"
|
|
2610
|
+
version = "0.5.3"
|
|
2611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
+
checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
|
|
2613
|
+
dependencies = [
|
|
2614
|
+
"base64",
|
|
2615
|
+
"http 1.3.1",
|
|
2616
|
+
"httparse",
|
|
2617
|
+
"log",
|
|
2618
|
+
]
|
|
2619
|
+
|
|
1519
2620
|
[[package]]
|
|
1520
2621
|
name = "url"
|
|
1521
2622
|
version = "2.5.7"
|
|
@@ -1528,6 +2629,12 @@ dependencies = [
|
|
|
1528
2629
|
"serde",
|
|
1529
2630
|
]
|
|
1530
2631
|
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "utf-8"
|
|
2634
|
+
version = "0.7.6"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2637
|
+
|
|
1531
2638
|
[[package]]
|
|
1532
2639
|
name = "utf8_iter"
|
|
1533
2640
|
version = "1.0.4"
|
|
@@ -1540,6 +2647,17 @@ version = "0.2.2"
|
|
|
1540
2647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
2648
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1542
2649
|
|
|
2650
|
+
[[package]]
|
|
2651
|
+
name = "uuid"
|
|
2652
|
+
version = "1.19.0"
|
|
2653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
2655
|
+
dependencies = [
|
|
2656
|
+
"js-sys",
|
|
2657
|
+
"serde_core",
|
|
2658
|
+
"wasm-bindgen",
|
|
2659
|
+
]
|
|
2660
|
+
|
|
1543
2661
|
[[package]]
|
|
1544
2662
|
name = "uuid-simd"
|
|
1545
2663
|
version = "0.8.0"
|
|
@@ -1550,6 +2668,18 @@ dependencies = [
|
|
|
1550
2668
|
"vsimd",
|
|
1551
2669
|
]
|
|
1552
2670
|
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "valuable"
|
|
2673
|
+
version = "0.1.1"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2676
|
+
|
|
2677
|
+
[[package]]
|
|
2678
|
+
name = "vcpkg"
|
|
2679
|
+
version = "0.2.15"
|
|
2680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2681
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2682
|
+
|
|
1553
2683
|
[[package]]
|
|
1554
2684
|
name = "version_check"
|
|
1555
2685
|
version = "0.9.5"
|
|
@@ -1664,6 +2794,31 @@ dependencies = [
|
|
|
1664
2794
|
"wasm-bindgen",
|
|
1665
2795
|
]
|
|
1666
2796
|
|
|
2797
|
+
[[package]]
|
|
2798
|
+
name = "webpki-root-certs"
|
|
2799
|
+
version = "1.0.5"
|
|
2800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2801
|
+
checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
|
|
2802
|
+
dependencies = [
|
|
2803
|
+
"rustls-pki-types",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "winapi"
|
|
2808
|
+
version = "0.3.9"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2811
|
+
dependencies = [
|
|
2812
|
+
"winapi-i686-pc-windows-gnu",
|
|
2813
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2814
|
+
]
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2818
|
+
version = "0.4.0"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2821
|
+
|
|
1667
2822
|
[[package]]
|
|
1668
2823
|
name = "winapi-util"
|
|
1669
2824
|
version = "0.1.11"
|
|
@@ -1673,6 +2828,12 @@ dependencies = [
|
|
|
1673
2828
|
"windows-sys 0.61.2",
|
|
1674
2829
|
]
|
|
1675
2830
|
|
|
2831
|
+
[[package]]
|
|
2832
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2833
|
+
version = "0.4.0"
|
|
2834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2835
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2836
|
+
|
|
1676
2837
|
[[package]]
|
|
1677
2838
|
name = "windows-core"
|
|
1678
2839
|
version = "0.62.2"
|
|
@@ -1732,13 +2893,22 @@ dependencies = [
|
|
|
1732
2893
|
"windows-link",
|
|
1733
2894
|
]
|
|
1734
2895
|
|
|
2896
|
+
[[package]]
|
|
2897
|
+
name = "windows-sys"
|
|
2898
|
+
version = "0.52.0"
|
|
2899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2900
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2901
|
+
dependencies = [
|
|
2902
|
+
"windows-targets 0.52.6",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
1735
2905
|
[[package]]
|
|
1736
2906
|
name = "windows-sys"
|
|
1737
2907
|
version = "0.60.2"
|
|
1738
2908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
2909
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1740
2910
|
dependencies = [
|
|
1741
|
-
"windows-targets",
|
|
2911
|
+
"windows-targets 0.53.5",
|
|
1742
2912
|
]
|
|
1743
2913
|
|
|
1744
2914
|
[[package]]
|
|
@@ -1750,6 +2920,22 @@ dependencies = [
|
|
|
1750
2920
|
"windows-link",
|
|
1751
2921
|
]
|
|
1752
2922
|
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "windows-targets"
|
|
2925
|
+
version = "0.52.6"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2928
|
+
dependencies = [
|
|
2929
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2930
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2931
|
+
"windows_i686_gnu 0.52.6",
|
|
2932
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2933
|
+
"windows_i686_msvc 0.52.6",
|
|
2934
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2935
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2936
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2937
|
+
]
|
|
2938
|
+
|
|
1753
2939
|
[[package]]
|
|
1754
2940
|
name = "windows-targets"
|
|
1755
2941
|
version = "0.53.5"
|
|
@@ -1757,58 +2943,106 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1757
2943
|
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1758
2944
|
dependencies = [
|
|
1759
2945
|
"windows-link",
|
|
1760
|
-
"windows_aarch64_gnullvm",
|
|
1761
|
-
"windows_aarch64_msvc",
|
|
1762
|
-
"windows_i686_gnu",
|
|
1763
|
-
"windows_i686_gnullvm",
|
|
1764
|
-
"windows_i686_msvc",
|
|
1765
|
-
"windows_x86_64_gnu",
|
|
1766
|
-
"windows_x86_64_gnullvm",
|
|
1767
|
-
"windows_x86_64_msvc",
|
|
2946
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2947
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2948
|
+
"windows_i686_gnu 0.53.1",
|
|
2949
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2950
|
+
"windows_i686_msvc 0.53.1",
|
|
2951
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2952
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2953
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1768
2954
|
]
|
|
1769
2955
|
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "windows_aarch64_gnullvm"
|
|
2958
|
+
version = "0.52.6"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2961
|
+
|
|
1770
2962
|
[[package]]
|
|
1771
2963
|
name = "windows_aarch64_gnullvm"
|
|
1772
2964
|
version = "0.53.1"
|
|
1773
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
2966
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1775
2967
|
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "windows_aarch64_msvc"
|
|
2970
|
+
version = "0.52.6"
|
|
2971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2973
|
+
|
|
1776
2974
|
[[package]]
|
|
1777
2975
|
name = "windows_aarch64_msvc"
|
|
1778
2976
|
version = "0.53.1"
|
|
1779
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
2978
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1781
2979
|
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "windows_i686_gnu"
|
|
2982
|
+
version = "0.52.6"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2985
|
+
|
|
1782
2986
|
[[package]]
|
|
1783
2987
|
name = "windows_i686_gnu"
|
|
1784
2988
|
version = "0.53.1"
|
|
1785
2989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
2990
|
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1787
2991
|
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "windows_i686_gnullvm"
|
|
2994
|
+
version = "0.52.6"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2997
|
+
|
|
1788
2998
|
[[package]]
|
|
1789
2999
|
name = "windows_i686_gnullvm"
|
|
1790
3000
|
version = "0.53.1"
|
|
1791
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
3002
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1793
3003
|
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "windows_i686_msvc"
|
|
3006
|
+
version = "0.52.6"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3009
|
+
|
|
1794
3010
|
[[package]]
|
|
1795
3011
|
name = "windows_i686_msvc"
|
|
1796
3012
|
version = "0.53.1"
|
|
1797
3013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
3014
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1799
3015
|
|
|
3016
|
+
[[package]]
|
|
3017
|
+
name = "windows_x86_64_gnu"
|
|
3018
|
+
version = "0.52.6"
|
|
3019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3021
|
+
|
|
1800
3022
|
[[package]]
|
|
1801
3023
|
name = "windows_x86_64_gnu"
|
|
1802
3024
|
version = "0.53.1"
|
|
1803
3025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
3026
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1805
3027
|
|
|
3028
|
+
[[package]]
|
|
3029
|
+
name = "windows_x86_64_gnullvm"
|
|
3030
|
+
version = "0.52.6"
|
|
3031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3033
|
+
|
|
1806
3034
|
[[package]]
|
|
1807
3035
|
name = "windows_x86_64_gnullvm"
|
|
1808
3036
|
version = "0.53.1"
|
|
1809
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
3038
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1811
3039
|
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "windows_x86_64_msvc"
|
|
3042
|
+
version = "0.52.6"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3045
|
+
|
|
1812
3046
|
[[package]]
|
|
1813
3047
|
name = "windows_x86_64_msvc"
|
|
1814
3048
|
version = "0.53.1"
|
|
@@ -1891,6 +3125,12 @@ dependencies = [
|
|
|
1891
3125
|
"synstructure",
|
|
1892
3126
|
]
|
|
1893
3127
|
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "zeroize"
|
|
3130
|
+
version = "1.8.2"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3133
|
+
|
|
1894
3134
|
[[package]]
|
|
1895
3135
|
name = "zerotrie"
|
|
1896
3136
|
version = "0.2.3"
|