sentry-options 0.0.3__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.3/Cargo.lock +1799 -0
- sentry_options-0.0.3/Cargo.toml +26 -0
- sentry_options-0.0.3/PKG-INFO +15 -0
- sentry_options-0.0.3/clients/python/Cargo.toml +15 -0
- sentry_options-0.0.3/clients/python/src/lib.rs +153 -0
- sentry_options-0.0.3/clients/python/tests/options_test.py +119 -0
- sentry_options-0.0.3/clients/python/uv.lock +103 -0
- sentry_options-0.0.3/clients/rust/Cargo.toml +15 -0
- sentry_options-0.0.3/clients/rust/src/lib.rs +280 -0
- sentry_options-0.0.3/pyproject.toml +30 -0
- sentry_options-0.0.3/sentry-options-validation/Cargo.toml +21 -0
- sentry_options-0.0.3/sentry-options-validation/src/lib.rs +1135 -0
- sentry_options-0.0.3/sentry-options-validation/src/namespace-schema.json +37 -0
|
@@ -0,0 +1,1799 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"getrandom",
|
|
13
|
+
"once_cell",
|
|
14
|
+
"serde",
|
|
15
|
+
"version_check",
|
|
16
|
+
"zerocopy",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "aho-corasick"
|
|
21
|
+
version = "1.1.4"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "allocator-api2"
|
|
30
|
+
version = "0.2.21"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "anstream"
|
|
36
|
+
version = "0.6.21"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"anstyle",
|
|
41
|
+
"anstyle-parse",
|
|
42
|
+
"anstyle-query",
|
|
43
|
+
"anstyle-wincon",
|
|
44
|
+
"colorchoice",
|
|
45
|
+
"is_terminal_polyfill",
|
|
46
|
+
"utf8parse",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "anstyle"
|
|
51
|
+
version = "1.0.13"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anstyle-parse"
|
|
57
|
+
version = "0.2.7"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"utf8parse",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstyle-query"
|
|
66
|
+
version = "1.1.5"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"windows-sys 0.61.2",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "anstyle-wincon"
|
|
75
|
+
version = "3.0.11"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"anstyle",
|
|
80
|
+
"once_cell_polyfill",
|
|
81
|
+
"windows-sys 0.61.2",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "anyhow"
|
|
86
|
+
version = "1.0.100"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "atomic-waker"
|
|
92
|
+
version = "1.1.2"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "autocfg"
|
|
98
|
+
version = "1.5.0"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "base64"
|
|
104
|
+
version = "0.22.1"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "bit-set"
|
|
110
|
+
version = "0.8.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"bit-vec",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "bit-vec"
|
|
119
|
+
version = "0.8.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "bitflags"
|
|
125
|
+
version = "2.10.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "borrow-or-share"
|
|
131
|
+
version = "0.2.4"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bumpalo"
|
|
137
|
+
version = "3.19.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bytecount"
|
|
143
|
+
version = "0.6.9"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "bytes"
|
|
149
|
+
version = "1.11.0"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "cfg-if"
|
|
155
|
+
version = "1.0.4"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "clap"
|
|
161
|
+
version = "4.5.53"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"clap_builder",
|
|
166
|
+
"clap_derive",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "clap_builder"
|
|
171
|
+
version = "4.5.53"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"anstream",
|
|
176
|
+
"anstyle",
|
|
177
|
+
"clap_lex",
|
|
178
|
+
"strsim",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "clap_derive"
|
|
183
|
+
version = "4.5.49"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"heck",
|
|
188
|
+
"proc-macro2",
|
|
189
|
+
"quote",
|
|
190
|
+
"syn",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "clap_lex"
|
|
195
|
+
version = "0.7.6"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "colorchoice"
|
|
201
|
+
version = "1.0.4"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "displaydoc"
|
|
207
|
+
version = "0.2.5"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"proc-macro2",
|
|
212
|
+
"quote",
|
|
213
|
+
"syn",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "email_address"
|
|
218
|
+
version = "0.2.9"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"serde",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "equivalent"
|
|
227
|
+
version = "1.0.2"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "errno"
|
|
233
|
+
version = "0.3.14"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"libc",
|
|
238
|
+
"windows-sys 0.61.2",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "example"
|
|
243
|
+
version = "0.0.3"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"anyhow",
|
|
246
|
+
"sentry-options",
|
|
247
|
+
"serde_json",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "fancy-regex"
|
|
252
|
+
version = "0.16.2"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"bit-set",
|
|
257
|
+
"regex-automata",
|
|
258
|
+
"regex-syntax",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "fastrand"
|
|
263
|
+
version = "2.3.0"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "fluent-uri"
|
|
269
|
+
version = "0.4.1"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"borrow-or-share",
|
|
274
|
+
"ref-cast",
|
|
275
|
+
"serde",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "fnv"
|
|
280
|
+
version = "1.0.7"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "foldhash"
|
|
286
|
+
version = "0.2.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "form_urlencoded"
|
|
292
|
+
version = "1.2.2"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"percent-encoding",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "fraction"
|
|
301
|
+
version = "0.15.3"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"lazy_static",
|
|
306
|
+
"num",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "futures-channel"
|
|
311
|
+
version = "0.3.31"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"futures-core",
|
|
316
|
+
"futures-sink",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "futures-core"
|
|
321
|
+
version = "0.3.31"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "futures-io"
|
|
327
|
+
version = "0.3.31"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "futures-sink"
|
|
333
|
+
version = "0.3.31"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "futures-task"
|
|
339
|
+
version = "0.3.31"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "futures-util"
|
|
345
|
+
version = "0.3.31"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"futures-core",
|
|
350
|
+
"futures-io",
|
|
351
|
+
"futures-sink",
|
|
352
|
+
"futures-task",
|
|
353
|
+
"memchr",
|
|
354
|
+
"pin-project-lite",
|
|
355
|
+
"pin-utils",
|
|
356
|
+
"slab",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "getrandom"
|
|
361
|
+
version = "0.3.4"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"cfg-if",
|
|
366
|
+
"js-sys",
|
|
367
|
+
"libc",
|
|
368
|
+
"r-efi",
|
|
369
|
+
"wasip2",
|
|
370
|
+
"wasm-bindgen",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "hashbrown"
|
|
375
|
+
version = "0.16.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"allocator-api2",
|
|
380
|
+
"equivalent",
|
|
381
|
+
"foldhash",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "heck"
|
|
386
|
+
version = "0.5.0"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "http"
|
|
392
|
+
version = "1.3.1"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"bytes",
|
|
397
|
+
"fnv",
|
|
398
|
+
"itoa",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "http-body"
|
|
403
|
+
version = "1.0.1"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"bytes",
|
|
408
|
+
"http",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "http-body-util"
|
|
413
|
+
version = "0.1.3"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"bytes",
|
|
418
|
+
"futures-core",
|
|
419
|
+
"http",
|
|
420
|
+
"http-body",
|
|
421
|
+
"pin-project-lite",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "httparse"
|
|
426
|
+
version = "1.10.1"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "hyper"
|
|
432
|
+
version = "1.8.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"atomic-waker",
|
|
437
|
+
"bytes",
|
|
438
|
+
"futures-channel",
|
|
439
|
+
"futures-core",
|
|
440
|
+
"http",
|
|
441
|
+
"http-body",
|
|
442
|
+
"httparse",
|
|
443
|
+
"itoa",
|
|
444
|
+
"pin-project-lite",
|
|
445
|
+
"pin-utils",
|
|
446
|
+
"smallvec",
|
|
447
|
+
"tokio",
|
|
448
|
+
"want",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "hyper-util"
|
|
453
|
+
version = "0.1.18"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"base64",
|
|
458
|
+
"bytes",
|
|
459
|
+
"futures-channel",
|
|
460
|
+
"futures-core",
|
|
461
|
+
"futures-util",
|
|
462
|
+
"http",
|
|
463
|
+
"http-body",
|
|
464
|
+
"hyper",
|
|
465
|
+
"ipnet",
|
|
466
|
+
"libc",
|
|
467
|
+
"percent-encoding",
|
|
468
|
+
"pin-project-lite",
|
|
469
|
+
"socket2",
|
|
470
|
+
"tokio",
|
|
471
|
+
"tower-service",
|
|
472
|
+
"tracing",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "icu_collections"
|
|
477
|
+
version = "2.1.1"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"displaydoc",
|
|
482
|
+
"potential_utf",
|
|
483
|
+
"yoke",
|
|
484
|
+
"zerofrom",
|
|
485
|
+
"zerovec",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "icu_locale_core"
|
|
490
|
+
version = "2.1.1"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"displaydoc",
|
|
495
|
+
"litemap",
|
|
496
|
+
"tinystr",
|
|
497
|
+
"writeable",
|
|
498
|
+
"zerovec",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "icu_normalizer"
|
|
503
|
+
version = "2.1.1"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"icu_collections",
|
|
508
|
+
"icu_normalizer_data",
|
|
509
|
+
"icu_properties",
|
|
510
|
+
"icu_provider",
|
|
511
|
+
"smallvec",
|
|
512
|
+
"zerovec",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_normalizer_data"
|
|
517
|
+
version = "2.1.1"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "icu_properties"
|
|
523
|
+
version = "2.1.1"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"icu_collections",
|
|
528
|
+
"icu_locale_core",
|
|
529
|
+
"icu_properties_data",
|
|
530
|
+
"icu_provider",
|
|
531
|
+
"zerotrie",
|
|
532
|
+
"zerovec",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "icu_properties_data"
|
|
537
|
+
version = "2.1.1"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "icu_provider"
|
|
543
|
+
version = "2.1.1"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"displaydoc",
|
|
548
|
+
"icu_locale_core",
|
|
549
|
+
"writeable",
|
|
550
|
+
"yoke",
|
|
551
|
+
"zerofrom",
|
|
552
|
+
"zerotrie",
|
|
553
|
+
"zerovec",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "idna"
|
|
558
|
+
version = "1.1.0"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"idna_adapter",
|
|
563
|
+
"smallvec",
|
|
564
|
+
"utf8_iter",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "idna_adapter"
|
|
569
|
+
version = "1.2.1"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"icu_normalizer",
|
|
574
|
+
"icu_properties",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "indexmap"
|
|
579
|
+
version = "2.12.0"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"equivalent",
|
|
584
|
+
"hashbrown",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "indoc"
|
|
589
|
+
version = "2.0.7"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"rustversion",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "ipnet"
|
|
598
|
+
version = "2.11.0"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "iri-string"
|
|
604
|
+
version = "0.7.9"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"memchr",
|
|
609
|
+
"serde",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "is_terminal_polyfill"
|
|
614
|
+
version = "1.70.2"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "itoa"
|
|
620
|
+
version = "1.0.15"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "js-sys"
|
|
626
|
+
version = "0.3.82"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"once_cell",
|
|
631
|
+
"wasm-bindgen",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "jsonschema"
|
|
636
|
+
version = "0.36.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "cd94c1d7bfa9d30b5d4268df9fe8c5ed13fa600a6bd0dae02b04db86d575fc8a"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"ahash",
|
|
641
|
+
"base64",
|
|
642
|
+
"bytecount",
|
|
643
|
+
"email_address",
|
|
644
|
+
"fancy-regex",
|
|
645
|
+
"fraction",
|
|
646
|
+
"getrandom",
|
|
647
|
+
"idna",
|
|
648
|
+
"itoa",
|
|
649
|
+
"num-cmp",
|
|
650
|
+
"num-traits",
|
|
651
|
+
"percent-encoding",
|
|
652
|
+
"referencing",
|
|
653
|
+
"regex",
|
|
654
|
+
"regex-syntax",
|
|
655
|
+
"reqwest",
|
|
656
|
+
"serde",
|
|
657
|
+
"serde_json",
|
|
658
|
+
"unicode-general-category",
|
|
659
|
+
"uuid-simd",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "lazy_static"
|
|
664
|
+
version = "1.5.0"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "libc"
|
|
670
|
+
version = "0.2.177"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "linux-raw-sys"
|
|
676
|
+
version = "0.11.0"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "litemap"
|
|
682
|
+
version = "0.8.1"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "lock_api"
|
|
688
|
+
version = "0.4.14"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"scopeguard",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "log"
|
|
697
|
+
version = "0.4.28"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "memchr"
|
|
703
|
+
version = "2.7.6"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "memoffset"
|
|
709
|
+
version = "0.9.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"autocfg",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "mio"
|
|
718
|
+
version = "1.1.0"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"libc",
|
|
723
|
+
"wasi",
|
|
724
|
+
"windows-sys 0.61.2",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "num"
|
|
729
|
+
version = "0.4.3"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"num-bigint",
|
|
734
|
+
"num-complex",
|
|
735
|
+
"num-integer",
|
|
736
|
+
"num-iter",
|
|
737
|
+
"num-rational",
|
|
738
|
+
"num-traits",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "num-bigint"
|
|
743
|
+
version = "0.4.6"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"num-integer",
|
|
748
|
+
"num-traits",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "num-cmp"
|
|
753
|
+
version = "0.1.0"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "num-complex"
|
|
759
|
+
version = "0.4.6"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"num-traits",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "num-integer"
|
|
768
|
+
version = "0.1.46"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"num-traits",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "num-iter"
|
|
777
|
+
version = "0.1.45"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"autocfg",
|
|
782
|
+
"num-integer",
|
|
783
|
+
"num-traits",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "num-rational"
|
|
788
|
+
version = "0.4.2"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"num-bigint",
|
|
793
|
+
"num-integer",
|
|
794
|
+
"num-traits",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "num-traits"
|
|
799
|
+
version = "0.2.19"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"autocfg",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "once_cell"
|
|
808
|
+
version = "1.21.3"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "once_cell_polyfill"
|
|
814
|
+
version = "1.70.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "outref"
|
|
820
|
+
version = "0.5.2"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "parking_lot"
|
|
826
|
+
version = "0.12.5"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"lock_api",
|
|
831
|
+
"parking_lot_core",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "parking_lot_core"
|
|
836
|
+
version = "0.9.12"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"cfg-if",
|
|
841
|
+
"libc",
|
|
842
|
+
"redox_syscall",
|
|
843
|
+
"smallvec",
|
|
844
|
+
"windows-link",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "percent-encoding"
|
|
849
|
+
version = "2.3.2"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "pin-project-lite"
|
|
855
|
+
version = "0.2.16"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "pin-utils"
|
|
861
|
+
version = "0.1.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "portable-atomic"
|
|
867
|
+
version = "1.11.1"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "potential_utf"
|
|
873
|
+
version = "0.1.4"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"zerovec",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "proc-macro2"
|
|
882
|
+
version = "1.0.103"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"unicode-ident",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "pyo3"
|
|
891
|
+
version = "0.27.2"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"indoc",
|
|
896
|
+
"libc",
|
|
897
|
+
"memoffset",
|
|
898
|
+
"once_cell",
|
|
899
|
+
"portable-atomic",
|
|
900
|
+
"pyo3-build-config",
|
|
901
|
+
"pyo3-ffi",
|
|
902
|
+
"pyo3-macros",
|
|
903
|
+
"unindent",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "pyo3-build-config"
|
|
908
|
+
version = "0.27.2"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"target-lexicon",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "pyo3-ffi"
|
|
917
|
+
version = "0.27.2"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"libc",
|
|
922
|
+
"pyo3-build-config",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "pyo3-macros"
|
|
927
|
+
version = "0.27.2"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"proc-macro2",
|
|
932
|
+
"pyo3-macros-backend",
|
|
933
|
+
"quote",
|
|
934
|
+
"syn",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "pyo3-macros-backend"
|
|
939
|
+
version = "0.27.2"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"heck",
|
|
944
|
+
"proc-macro2",
|
|
945
|
+
"pyo3-build-config",
|
|
946
|
+
"quote",
|
|
947
|
+
"syn",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "quote"
|
|
952
|
+
version = "1.0.42"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"proc-macro2",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "r-efi"
|
|
961
|
+
version = "5.3.0"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "redox_syscall"
|
|
967
|
+
version = "0.5.18"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"bitflags",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "ref-cast"
|
|
976
|
+
version = "1.0.25"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"ref-cast-impl",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "ref-cast-impl"
|
|
985
|
+
version = "1.0.25"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"proc-macro2",
|
|
990
|
+
"quote",
|
|
991
|
+
"syn",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "referencing"
|
|
996
|
+
version = "0.36.0"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "ba1cb02ef237bd757aba02cd648a4ffa628cd8e5852e2b9bb89aabf93dc5dcc7"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"ahash",
|
|
1001
|
+
"fluent-uri",
|
|
1002
|
+
"getrandom",
|
|
1003
|
+
"hashbrown",
|
|
1004
|
+
"parking_lot",
|
|
1005
|
+
"percent-encoding",
|
|
1006
|
+
"serde_json",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "regex"
|
|
1011
|
+
version = "1.12.2"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"aho-corasick",
|
|
1016
|
+
"memchr",
|
|
1017
|
+
"regex-automata",
|
|
1018
|
+
"regex-syntax",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "regex-automata"
|
|
1023
|
+
version = "0.4.13"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"aho-corasick",
|
|
1028
|
+
"memchr",
|
|
1029
|
+
"regex-syntax",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "regex-syntax"
|
|
1034
|
+
version = "0.8.8"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "reqwest"
|
|
1040
|
+
version = "0.12.24"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"base64",
|
|
1045
|
+
"bytes",
|
|
1046
|
+
"futures-channel",
|
|
1047
|
+
"futures-core",
|
|
1048
|
+
"futures-util",
|
|
1049
|
+
"http",
|
|
1050
|
+
"http-body",
|
|
1051
|
+
"http-body-util",
|
|
1052
|
+
"hyper",
|
|
1053
|
+
"hyper-util",
|
|
1054
|
+
"js-sys",
|
|
1055
|
+
"log",
|
|
1056
|
+
"percent-encoding",
|
|
1057
|
+
"pin-project-lite",
|
|
1058
|
+
"serde",
|
|
1059
|
+
"serde_json",
|
|
1060
|
+
"serde_urlencoded",
|
|
1061
|
+
"sync_wrapper",
|
|
1062
|
+
"tokio",
|
|
1063
|
+
"tower",
|
|
1064
|
+
"tower-http",
|
|
1065
|
+
"tower-service",
|
|
1066
|
+
"url",
|
|
1067
|
+
"wasm-bindgen",
|
|
1068
|
+
"wasm-bindgen-futures",
|
|
1069
|
+
"web-sys",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "rustix"
|
|
1074
|
+
version = "1.1.2"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"bitflags",
|
|
1079
|
+
"errno",
|
|
1080
|
+
"libc",
|
|
1081
|
+
"linux-raw-sys",
|
|
1082
|
+
"windows-sys 0.61.2",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "rustversion"
|
|
1087
|
+
version = "1.0.22"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "ryu"
|
|
1093
|
+
version = "1.0.20"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "same-file"
|
|
1099
|
+
version = "1.0.6"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"winapi-util",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "scopeguard"
|
|
1108
|
+
version = "1.2.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "sentry-options"
|
|
1114
|
+
version = "0.0.3"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"sentry-options-validation",
|
|
1117
|
+
"serde_json",
|
|
1118
|
+
"tempfile",
|
|
1119
|
+
"thiserror",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "sentry-options-cli"
|
|
1124
|
+
version = "0.0.3"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"clap",
|
|
1127
|
+
"sentry-options-validation",
|
|
1128
|
+
"serde",
|
|
1129
|
+
"serde_json",
|
|
1130
|
+
"serde_yaml",
|
|
1131
|
+
"tempfile",
|
|
1132
|
+
"thiserror",
|
|
1133
|
+
"walkdir",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "sentry-options-python"
|
|
1138
|
+
version = "0.0.3"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"pyo3",
|
|
1141
|
+
"sentry-options",
|
|
1142
|
+
"serde_json",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "sentry-options-validation"
|
|
1147
|
+
version = "0.0.3"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"anyhow",
|
|
1150
|
+
"jsonschema",
|
|
1151
|
+
"serde",
|
|
1152
|
+
"serde_json",
|
|
1153
|
+
"tempfile",
|
|
1154
|
+
"thiserror",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "serde"
|
|
1159
|
+
version = "1.0.228"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"serde_core",
|
|
1164
|
+
"serde_derive",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "serde_core"
|
|
1169
|
+
version = "1.0.228"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"serde_derive",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "serde_derive"
|
|
1178
|
+
version = "1.0.228"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"proc-macro2",
|
|
1183
|
+
"quote",
|
|
1184
|
+
"syn",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "serde_json"
|
|
1189
|
+
version = "1.0.145"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"itoa",
|
|
1194
|
+
"memchr",
|
|
1195
|
+
"ryu",
|
|
1196
|
+
"serde",
|
|
1197
|
+
"serde_core",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "serde_urlencoded"
|
|
1202
|
+
version = "0.7.1"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"form_urlencoded",
|
|
1207
|
+
"itoa",
|
|
1208
|
+
"ryu",
|
|
1209
|
+
"serde",
|
|
1210
|
+
]
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "serde_yaml"
|
|
1214
|
+
version = "0.9.34+deprecated"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1217
|
+
dependencies = [
|
|
1218
|
+
"indexmap",
|
|
1219
|
+
"itoa",
|
|
1220
|
+
"ryu",
|
|
1221
|
+
"serde",
|
|
1222
|
+
"unsafe-libyaml",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "slab"
|
|
1227
|
+
version = "0.4.11"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "smallvec"
|
|
1233
|
+
version = "1.15.1"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "socket2"
|
|
1239
|
+
version = "0.6.1"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"libc",
|
|
1244
|
+
"windows-sys 0.60.2",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "stable_deref_trait"
|
|
1249
|
+
version = "1.2.1"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "strsim"
|
|
1255
|
+
version = "0.11.1"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "syn"
|
|
1261
|
+
version = "2.0.110"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"proc-macro2",
|
|
1266
|
+
"quote",
|
|
1267
|
+
"unicode-ident",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "sync_wrapper"
|
|
1272
|
+
version = "1.0.2"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"futures-core",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "synstructure"
|
|
1281
|
+
version = "0.13.2"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"proc-macro2",
|
|
1286
|
+
"quote",
|
|
1287
|
+
"syn",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "target-lexicon"
|
|
1292
|
+
version = "0.13.3"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "tempfile"
|
|
1298
|
+
version = "3.23.0"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"fastrand",
|
|
1303
|
+
"getrandom",
|
|
1304
|
+
"once_cell",
|
|
1305
|
+
"rustix",
|
|
1306
|
+
"windows-sys 0.61.2",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "thiserror"
|
|
1311
|
+
version = "2.0.17"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"thiserror-impl",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "thiserror-impl"
|
|
1320
|
+
version = "2.0.17"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"proc-macro2",
|
|
1325
|
+
"quote",
|
|
1326
|
+
"syn",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "tinystr"
|
|
1331
|
+
version = "0.8.2"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"displaydoc",
|
|
1336
|
+
"zerovec",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "tokio"
|
|
1341
|
+
version = "1.48.0"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"libc",
|
|
1346
|
+
"mio",
|
|
1347
|
+
"pin-project-lite",
|
|
1348
|
+
"socket2",
|
|
1349
|
+
"windows-sys 0.61.2",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "tower"
|
|
1354
|
+
version = "0.5.2"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"futures-core",
|
|
1359
|
+
"futures-util",
|
|
1360
|
+
"pin-project-lite",
|
|
1361
|
+
"sync_wrapper",
|
|
1362
|
+
"tokio",
|
|
1363
|
+
"tower-layer",
|
|
1364
|
+
"tower-service",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "tower-http"
|
|
1369
|
+
version = "0.6.6"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"bitflags",
|
|
1374
|
+
"bytes",
|
|
1375
|
+
"futures-util",
|
|
1376
|
+
"http",
|
|
1377
|
+
"http-body",
|
|
1378
|
+
"iri-string",
|
|
1379
|
+
"pin-project-lite",
|
|
1380
|
+
"tower",
|
|
1381
|
+
"tower-layer",
|
|
1382
|
+
"tower-service",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "tower-layer"
|
|
1387
|
+
version = "0.3.3"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "tower-service"
|
|
1393
|
+
version = "0.3.3"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "tracing"
|
|
1399
|
+
version = "0.1.41"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"pin-project-lite",
|
|
1404
|
+
"tracing-core",
|
|
1405
|
+
]
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "tracing-core"
|
|
1409
|
+
version = "0.1.34"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"once_cell",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "try-lock"
|
|
1418
|
+
version = "0.2.5"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "unicode-general-category"
|
|
1424
|
+
version = "1.1.0"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "unicode-ident"
|
|
1430
|
+
version = "1.0.22"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "unindent"
|
|
1436
|
+
version = "0.2.4"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "unsafe-libyaml"
|
|
1442
|
+
version = "0.2.11"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "url"
|
|
1448
|
+
version = "2.5.7"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"form_urlencoded",
|
|
1453
|
+
"idna",
|
|
1454
|
+
"percent-encoding",
|
|
1455
|
+
"serde",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "utf8_iter"
|
|
1460
|
+
version = "1.0.4"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "utf8parse"
|
|
1466
|
+
version = "0.2.2"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "uuid-simd"
|
|
1472
|
+
version = "0.8.0"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"outref",
|
|
1477
|
+
"vsimd",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "version_check"
|
|
1482
|
+
version = "0.9.5"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "vsimd"
|
|
1488
|
+
version = "0.8.0"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "walkdir"
|
|
1494
|
+
version = "2.5.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"same-file",
|
|
1499
|
+
"winapi-util",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "want"
|
|
1504
|
+
version = "0.3.1"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"try-lock",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "wasi"
|
|
1513
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "wasip2"
|
|
1519
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"wit-bindgen",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "wasm-bindgen"
|
|
1528
|
+
version = "0.2.105"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"cfg-if",
|
|
1533
|
+
"once_cell",
|
|
1534
|
+
"rustversion",
|
|
1535
|
+
"wasm-bindgen-macro",
|
|
1536
|
+
"wasm-bindgen-shared",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "wasm-bindgen-futures"
|
|
1541
|
+
version = "0.4.55"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"cfg-if",
|
|
1546
|
+
"js-sys",
|
|
1547
|
+
"once_cell",
|
|
1548
|
+
"wasm-bindgen",
|
|
1549
|
+
"web-sys",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "wasm-bindgen-macro"
|
|
1554
|
+
version = "0.2.105"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"quote",
|
|
1559
|
+
"wasm-bindgen-macro-support",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "wasm-bindgen-macro-support"
|
|
1564
|
+
version = "0.2.105"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"bumpalo",
|
|
1569
|
+
"proc-macro2",
|
|
1570
|
+
"quote",
|
|
1571
|
+
"syn",
|
|
1572
|
+
"wasm-bindgen-shared",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "wasm-bindgen-shared"
|
|
1577
|
+
version = "0.2.105"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"unicode-ident",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "web-sys"
|
|
1586
|
+
version = "0.3.82"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"js-sys",
|
|
1591
|
+
"wasm-bindgen",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "winapi-util"
|
|
1596
|
+
version = "0.1.11"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"windows-sys 0.61.2",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "windows-link"
|
|
1605
|
+
version = "0.2.1"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "windows-sys"
|
|
1611
|
+
version = "0.60.2"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"windows-targets",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "windows-sys"
|
|
1620
|
+
version = "0.61.2"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"windows-link",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "windows-targets"
|
|
1629
|
+
version = "0.53.5"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"windows-link",
|
|
1634
|
+
"windows_aarch64_gnullvm",
|
|
1635
|
+
"windows_aarch64_msvc",
|
|
1636
|
+
"windows_i686_gnu",
|
|
1637
|
+
"windows_i686_gnullvm",
|
|
1638
|
+
"windows_i686_msvc",
|
|
1639
|
+
"windows_x86_64_gnu",
|
|
1640
|
+
"windows_x86_64_gnullvm",
|
|
1641
|
+
"windows_x86_64_msvc",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "windows_aarch64_gnullvm"
|
|
1646
|
+
version = "0.53.1"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "windows_aarch64_msvc"
|
|
1652
|
+
version = "0.53.1"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "windows_i686_gnu"
|
|
1658
|
+
version = "0.53.1"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "windows_i686_gnullvm"
|
|
1664
|
+
version = "0.53.1"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "windows_i686_msvc"
|
|
1670
|
+
version = "0.53.1"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "windows_x86_64_gnu"
|
|
1676
|
+
version = "0.53.1"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "windows_x86_64_gnullvm"
|
|
1682
|
+
version = "0.53.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "windows_x86_64_msvc"
|
|
1688
|
+
version = "0.53.1"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "wit-bindgen"
|
|
1694
|
+
version = "0.46.0"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "writeable"
|
|
1700
|
+
version = "0.6.2"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "yoke"
|
|
1706
|
+
version = "0.8.1"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"stable_deref_trait",
|
|
1711
|
+
"yoke-derive",
|
|
1712
|
+
"zerofrom",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "yoke-derive"
|
|
1717
|
+
version = "0.8.1"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"proc-macro2",
|
|
1722
|
+
"quote",
|
|
1723
|
+
"syn",
|
|
1724
|
+
"synstructure",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "zerocopy"
|
|
1729
|
+
version = "0.8.27"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"zerocopy-derive",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "zerocopy-derive"
|
|
1738
|
+
version = "0.8.27"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"proc-macro2",
|
|
1743
|
+
"quote",
|
|
1744
|
+
"syn",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "zerofrom"
|
|
1749
|
+
version = "0.1.6"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"zerofrom-derive",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "zerofrom-derive"
|
|
1758
|
+
version = "0.1.6"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"proc-macro2",
|
|
1763
|
+
"quote",
|
|
1764
|
+
"syn",
|
|
1765
|
+
"synstructure",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "zerotrie"
|
|
1770
|
+
version = "0.2.3"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"displaydoc",
|
|
1775
|
+
"yoke",
|
|
1776
|
+
"zerofrom",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "zerovec"
|
|
1781
|
+
version = "0.11.5"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"yoke",
|
|
1786
|
+
"zerofrom",
|
|
1787
|
+
"zerovec-derive",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "zerovec-derive"
|
|
1792
|
+
version = "0.11.2"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"proc-macro2",
|
|
1797
|
+
"quote",
|
|
1798
|
+
"syn",
|
|
1799
|
+
]
|