rlbot-flatbuffers 0.16.0__tar.gz → 0.16.1__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.
- rlbot_flatbuffers-0.16.1/Cargo.lock +1835 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/Cargo.toml +6 -2
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/PKG-INFO +1 -1
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/main.rs +30 -3
- rlbot_flatbuffers-0.16.0/Cargo.lock +0 -358
- rlbot_flatbuffers-0.16.0/flatbuffers-schema/FLATBUFFERS-LICENSE +0 -202
- rlbot_flatbuffers-0.16.0/flatbuffers-schema/README.md +0 -5
- rlbot_flatbuffers-0.16.0/flatbuffers-schema/flatc +0 -0
- rlbot_flatbuffers-0.16.0/flatbuffers-schema/flatc.exe +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/LICENSE +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/README.md +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/class_inject.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/enums.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/generator.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/pyi.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/structs.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/codegen/unions.rs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/comms.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/gamedata.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/gamestatemanip.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/matchconfig.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/rendering.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/flatbuffers-schema/rlbot.fbs +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/pyproject.toml +0 -0
- {rlbot_flatbuffers-0.16.0 → rlbot_flatbuffers-0.16.1}/src/lib.rs +0 -0
|
@@ -0,0 +1,1835 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "arbitrary"
|
|
22
|
+
version = "1.4.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"derive_arbitrary",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "attribute-derive"
|
|
31
|
+
version = "0.10.3"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "0053e96dd3bec5b4879c23a138d6ef26f2cb936c9cdc96274ac2b9ed44b5bb54"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"attribute-derive-macro",
|
|
36
|
+
"derive-where",
|
|
37
|
+
"manyhow",
|
|
38
|
+
"proc-macro2",
|
|
39
|
+
"quote",
|
|
40
|
+
"syn",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "attribute-derive-macro"
|
|
45
|
+
version = "0.10.3"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "463b53ad0fd5b460af4b1915fe045ff4d946d025fb6c4dc3337752eaa980f71b"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"collection_literals",
|
|
50
|
+
"interpolator",
|
|
51
|
+
"manyhow",
|
|
52
|
+
"proc-macro-utils",
|
|
53
|
+
"proc-macro2",
|
|
54
|
+
"quote",
|
|
55
|
+
"quote-use",
|
|
56
|
+
"syn",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "autocfg"
|
|
61
|
+
version = "1.4.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "backtrace"
|
|
67
|
+
version = "0.3.74"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"addr2line",
|
|
72
|
+
"cfg-if",
|
|
73
|
+
"libc",
|
|
74
|
+
"miniz_oxide",
|
|
75
|
+
"object",
|
|
76
|
+
"rustc-demangle",
|
|
77
|
+
"windows-targets 0.52.6",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "base64"
|
|
82
|
+
version = "0.22.1"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "bitflags"
|
|
88
|
+
version = "2.9.0"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "bumpalo"
|
|
94
|
+
version = "3.17.0"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "bytes"
|
|
100
|
+
version = "1.10.1"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "cc"
|
|
106
|
+
version = "1.2.19"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"shlex",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "cfg-if"
|
|
115
|
+
version = "1.0.0"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "cfg_aliases"
|
|
121
|
+
version = "0.2.1"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "collection_literals"
|
|
127
|
+
version = "1.0.1"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "186dce98367766de751c42c4f03970fc60fc012296e706ccbb9d5df9b6c1e271"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "crc32fast"
|
|
133
|
+
version = "1.4.2"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"cfg-if",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "crossbeam-utils"
|
|
142
|
+
version = "0.8.21"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "derive-where"
|
|
148
|
+
version = "1.2.7"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"proc-macro2",
|
|
153
|
+
"quote",
|
|
154
|
+
"syn",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "derive_arbitrary"
|
|
159
|
+
version = "1.4.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"proc-macro2",
|
|
164
|
+
"quote",
|
|
165
|
+
"syn",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "displaydoc"
|
|
170
|
+
version = "0.2.5"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"proc-macro2",
|
|
175
|
+
"quote",
|
|
176
|
+
"syn",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "equivalent"
|
|
181
|
+
version = "1.0.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "flatbuffers"
|
|
187
|
+
version = "25.2.10"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"bitflags",
|
|
192
|
+
"rustc_version",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "flate2"
|
|
197
|
+
version = "1.1.1"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"crc32fast",
|
|
202
|
+
"miniz_oxide",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "fnv"
|
|
207
|
+
version = "1.0.7"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "form_urlencoded"
|
|
213
|
+
version = "1.2.1"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"percent-encoding",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "futures-channel"
|
|
222
|
+
version = "0.3.31"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"futures-core",
|
|
227
|
+
"futures-sink",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "futures-core"
|
|
232
|
+
version = "0.3.31"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "futures-io"
|
|
238
|
+
version = "0.3.31"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "futures-sink"
|
|
244
|
+
version = "0.3.31"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "futures-task"
|
|
250
|
+
version = "0.3.31"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "futures-util"
|
|
256
|
+
version = "0.3.31"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"futures-core",
|
|
261
|
+
"futures-io",
|
|
262
|
+
"futures-sink",
|
|
263
|
+
"futures-task",
|
|
264
|
+
"memchr",
|
|
265
|
+
"pin-project-lite",
|
|
266
|
+
"pin-utils",
|
|
267
|
+
"slab",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "get-size"
|
|
272
|
+
version = "0.2.0"
|
|
273
|
+
source = "git+https://github.com/VirxEC/get-size?branch=update#0c14ad3f6de292f11d832ad140434f045c6cfd3c"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"get-size-derive",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "get-size-derive"
|
|
280
|
+
version = "0.2.0"
|
|
281
|
+
source = "git+https://github.com/VirxEC/get-size?branch=update#0c14ad3f6de292f11d832ad140434f045c6cfd3c"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"attribute-derive",
|
|
284
|
+
"quote",
|
|
285
|
+
"syn",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "getrandom"
|
|
290
|
+
version = "0.2.15"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"cfg-if",
|
|
295
|
+
"js-sys",
|
|
296
|
+
"libc",
|
|
297
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
298
|
+
"wasm-bindgen",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "getrandom"
|
|
303
|
+
version = "0.3.2"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"cfg-if",
|
|
308
|
+
"js-sys",
|
|
309
|
+
"libc",
|
|
310
|
+
"r-efi",
|
|
311
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
312
|
+
"wasm-bindgen",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "gimli"
|
|
317
|
+
version = "0.31.1"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "hashbrown"
|
|
323
|
+
version = "0.15.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "heck"
|
|
329
|
+
version = "0.5.0"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "http"
|
|
335
|
+
version = "1.3.1"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"bytes",
|
|
340
|
+
"fnv",
|
|
341
|
+
"itoa",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "http-body"
|
|
346
|
+
version = "1.0.1"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"bytes",
|
|
351
|
+
"http",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "http-body-util"
|
|
356
|
+
version = "0.1.3"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"bytes",
|
|
361
|
+
"futures-core",
|
|
362
|
+
"http",
|
|
363
|
+
"http-body",
|
|
364
|
+
"pin-project-lite",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "httparse"
|
|
369
|
+
version = "1.10.1"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "hyper"
|
|
375
|
+
version = "1.6.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"bytes",
|
|
380
|
+
"futures-channel",
|
|
381
|
+
"futures-util",
|
|
382
|
+
"http",
|
|
383
|
+
"http-body",
|
|
384
|
+
"httparse",
|
|
385
|
+
"itoa",
|
|
386
|
+
"pin-project-lite",
|
|
387
|
+
"smallvec",
|
|
388
|
+
"tokio",
|
|
389
|
+
"want",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "hyper-rustls"
|
|
394
|
+
version = "0.27.5"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"futures-util",
|
|
399
|
+
"http",
|
|
400
|
+
"hyper",
|
|
401
|
+
"hyper-util",
|
|
402
|
+
"rustls",
|
|
403
|
+
"rustls-pki-types",
|
|
404
|
+
"tokio",
|
|
405
|
+
"tokio-rustls",
|
|
406
|
+
"tower-service",
|
|
407
|
+
"webpki-roots",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "hyper-util"
|
|
412
|
+
version = "0.1.11"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"bytes",
|
|
417
|
+
"futures-channel",
|
|
418
|
+
"futures-util",
|
|
419
|
+
"http",
|
|
420
|
+
"http-body",
|
|
421
|
+
"hyper",
|
|
422
|
+
"libc",
|
|
423
|
+
"pin-project-lite",
|
|
424
|
+
"socket2",
|
|
425
|
+
"tokio",
|
|
426
|
+
"tower-service",
|
|
427
|
+
"tracing",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "icu_collections"
|
|
432
|
+
version = "1.5.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"displaydoc",
|
|
437
|
+
"yoke",
|
|
438
|
+
"zerofrom",
|
|
439
|
+
"zerovec",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "icu_locid"
|
|
444
|
+
version = "1.5.0"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"displaydoc",
|
|
449
|
+
"litemap",
|
|
450
|
+
"tinystr",
|
|
451
|
+
"writeable",
|
|
452
|
+
"zerovec",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "icu_locid_transform"
|
|
457
|
+
version = "1.5.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"displaydoc",
|
|
462
|
+
"icu_locid",
|
|
463
|
+
"icu_locid_transform_data",
|
|
464
|
+
"icu_provider",
|
|
465
|
+
"tinystr",
|
|
466
|
+
"zerovec",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "icu_locid_transform_data"
|
|
471
|
+
version = "1.5.1"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "icu_normalizer"
|
|
477
|
+
version = "1.5.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"displaydoc",
|
|
482
|
+
"icu_collections",
|
|
483
|
+
"icu_normalizer_data",
|
|
484
|
+
"icu_properties",
|
|
485
|
+
"icu_provider",
|
|
486
|
+
"smallvec",
|
|
487
|
+
"utf16_iter",
|
|
488
|
+
"utf8_iter",
|
|
489
|
+
"write16",
|
|
490
|
+
"zerovec",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "icu_normalizer_data"
|
|
495
|
+
version = "1.5.1"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "icu_properties"
|
|
501
|
+
version = "1.5.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"displaydoc",
|
|
506
|
+
"icu_collections",
|
|
507
|
+
"icu_locid_transform",
|
|
508
|
+
"icu_properties_data",
|
|
509
|
+
"icu_provider",
|
|
510
|
+
"tinystr",
|
|
511
|
+
"zerovec",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "icu_properties_data"
|
|
516
|
+
version = "1.5.1"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "icu_provider"
|
|
522
|
+
version = "1.5.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"displaydoc",
|
|
527
|
+
"icu_locid",
|
|
528
|
+
"icu_provider_macros",
|
|
529
|
+
"stable_deref_trait",
|
|
530
|
+
"tinystr",
|
|
531
|
+
"writeable",
|
|
532
|
+
"yoke",
|
|
533
|
+
"zerofrom",
|
|
534
|
+
"zerovec",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "icu_provider_macros"
|
|
539
|
+
version = "1.5.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"proc-macro2",
|
|
544
|
+
"quote",
|
|
545
|
+
"syn",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "idna"
|
|
550
|
+
version = "1.0.3"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"idna_adapter",
|
|
555
|
+
"smallvec",
|
|
556
|
+
"utf8_iter",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "idna_adapter"
|
|
561
|
+
version = "1.2.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"icu_normalizer",
|
|
566
|
+
"icu_properties",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "indexmap"
|
|
571
|
+
version = "2.9.0"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"equivalent",
|
|
576
|
+
"hashbrown",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "indoc"
|
|
581
|
+
version = "2.0.6"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "interpolator"
|
|
587
|
+
version = "0.5.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "ipnet"
|
|
593
|
+
version = "2.11.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "itoa"
|
|
599
|
+
version = "1.0.15"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "js-sys"
|
|
605
|
+
version = "0.3.77"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"once_cell",
|
|
610
|
+
"wasm-bindgen",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "libc"
|
|
615
|
+
version = "0.2.171"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "litemap"
|
|
621
|
+
version = "0.7.5"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "lockfree-object-pool"
|
|
627
|
+
version = "0.1.6"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "log"
|
|
633
|
+
version = "0.4.27"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "manyhow"
|
|
639
|
+
version = "0.11.4"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"manyhow-macros",
|
|
644
|
+
"proc-macro2",
|
|
645
|
+
"quote",
|
|
646
|
+
"syn",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "manyhow-macros"
|
|
651
|
+
version = "0.11.4"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"proc-macro-utils",
|
|
656
|
+
"proc-macro2",
|
|
657
|
+
"quote",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "memchr"
|
|
662
|
+
version = "2.7.4"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "memoffset"
|
|
668
|
+
version = "0.9.1"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"autocfg",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "mime"
|
|
677
|
+
version = "0.3.17"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "miniz_oxide"
|
|
683
|
+
version = "0.8.8"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"adler2",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "mio"
|
|
692
|
+
version = "1.0.3"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"libc",
|
|
697
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
698
|
+
"windows-sys",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "object"
|
|
703
|
+
version = "0.36.7"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"memchr",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "once_cell"
|
|
712
|
+
version = "1.21.3"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "percent-encoding"
|
|
718
|
+
version = "2.3.1"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "pin-project-lite"
|
|
724
|
+
version = "0.2.16"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "pin-utils"
|
|
730
|
+
version = "0.1.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "portable-atomic"
|
|
736
|
+
version = "1.11.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "ppv-lite86"
|
|
742
|
+
version = "0.2.21"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"zerocopy",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "proc-macro-utils"
|
|
751
|
+
version = "0.10.0"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"proc-macro2",
|
|
756
|
+
"quote",
|
|
757
|
+
"smallvec",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "proc-macro2"
|
|
762
|
+
version = "1.0.94"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"unicode-ident",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "pyo3"
|
|
771
|
+
version = "0.24.1"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"cfg-if",
|
|
776
|
+
"indoc",
|
|
777
|
+
"libc",
|
|
778
|
+
"memoffset",
|
|
779
|
+
"once_cell",
|
|
780
|
+
"portable-atomic",
|
|
781
|
+
"pyo3-build-config",
|
|
782
|
+
"pyo3-ffi",
|
|
783
|
+
"pyo3-macros",
|
|
784
|
+
"unindent",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "pyo3-build-config"
|
|
789
|
+
version = "0.24.1"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"once_cell",
|
|
794
|
+
"target-lexicon",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "pyo3-ffi"
|
|
799
|
+
version = "0.24.1"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"libc",
|
|
804
|
+
"pyo3-build-config",
|
|
805
|
+
]
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "pyo3-macros"
|
|
809
|
+
version = "0.24.1"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
|
|
812
|
+
dependencies = [
|
|
813
|
+
"proc-macro2",
|
|
814
|
+
"pyo3-macros-backend",
|
|
815
|
+
"quote",
|
|
816
|
+
"syn",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "pyo3-macros-backend"
|
|
821
|
+
version = "0.24.1"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"heck",
|
|
826
|
+
"proc-macro2",
|
|
827
|
+
"pyo3-build-config",
|
|
828
|
+
"quote",
|
|
829
|
+
"syn",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "quinn"
|
|
834
|
+
version = "0.11.7"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"bytes",
|
|
839
|
+
"cfg_aliases",
|
|
840
|
+
"pin-project-lite",
|
|
841
|
+
"quinn-proto",
|
|
842
|
+
"quinn-udp",
|
|
843
|
+
"rustc-hash",
|
|
844
|
+
"rustls",
|
|
845
|
+
"socket2",
|
|
846
|
+
"thiserror",
|
|
847
|
+
"tokio",
|
|
848
|
+
"tracing",
|
|
849
|
+
"web-time",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "quinn-proto"
|
|
854
|
+
version = "0.11.10"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"bytes",
|
|
859
|
+
"getrandom 0.3.2",
|
|
860
|
+
"rand",
|
|
861
|
+
"ring",
|
|
862
|
+
"rustc-hash",
|
|
863
|
+
"rustls",
|
|
864
|
+
"rustls-pki-types",
|
|
865
|
+
"slab",
|
|
866
|
+
"thiserror",
|
|
867
|
+
"tinyvec",
|
|
868
|
+
"tracing",
|
|
869
|
+
"web-time",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "quinn-udp"
|
|
874
|
+
version = "0.5.11"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"cfg_aliases",
|
|
879
|
+
"libc",
|
|
880
|
+
"once_cell",
|
|
881
|
+
"socket2",
|
|
882
|
+
"tracing",
|
|
883
|
+
"windows-sys",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "quote"
|
|
888
|
+
version = "1.0.40"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"proc-macro2",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "quote-use"
|
|
897
|
+
version = "0.8.4"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"quote",
|
|
902
|
+
"quote-use-macros",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "quote-use-macros"
|
|
907
|
+
version = "0.8.4"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"proc-macro-utils",
|
|
912
|
+
"proc-macro2",
|
|
913
|
+
"quote",
|
|
914
|
+
"syn",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "r-efi"
|
|
919
|
+
version = "5.2.0"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "rand"
|
|
925
|
+
version = "0.9.0"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"rand_chacha",
|
|
930
|
+
"rand_core",
|
|
931
|
+
"zerocopy",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "rand_chacha"
|
|
936
|
+
version = "0.9.0"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"ppv-lite86",
|
|
941
|
+
"rand_core",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "rand_core"
|
|
946
|
+
version = "0.9.3"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"getrandom 0.3.2",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "reqwest"
|
|
955
|
+
version = "0.12.15"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"base64",
|
|
960
|
+
"bytes",
|
|
961
|
+
"futures-channel",
|
|
962
|
+
"futures-core",
|
|
963
|
+
"futures-util",
|
|
964
|
+
"http",
|
|
965
|
+
"http-body",
|
|
966
|
+
"http-body-util",
|
|
967
|
+
"hyper",
|
|
968
|
+
"hyper-rustls",
|
|
969
|
+
"hyper-util",
|
|
970
|
+
"ipnet",
|
|
971
|
+
"js-sys",
|
|
972
|
+
"log",
|
|
973
|
+
"mime",
|
|
974
|
+
"once_cell",
|
|
975
|
+
"percent-encoding",
|
|
976
|
+
"pin-project-lite",
|
|
977
|
+
"quinn",
|
|
978
|
+
"rustls",
|
|
979
|
+
"rustls-pemfile",
|
|
980
|
+
"rustls-pki-types",
|
|
981
|
+
"serde",
|
|
982
|
+
"serde_json",
|
|
983
|
+
"serde_urlencoded",
|
|
984
|
+
"sync_wrapper",
|
|
985
|
+
"tokio",
|
|
986
|
+
"tokio-rustls",
|
|
987
|
+
"tower",
|
|
988
|
+
"tower-service",
|
|
989
|
+
"url",
|
|
990
|
+
"wasm-bindgen",
|
|
991
|
+
"wasm-bindgen-futures",
|
|
992
|
+
"web-sys",
|
|
993
|
+
"webpki-roots",
|
|
994
|
+
"windows-registry",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "ring"
|
|
999
|
+
version = "0.17.14"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"cc",
|
|
1004
|
+
"cfg-if",
|
|
1005
|
+
"getrandom 0.2.15",
|
|
1006
|
+
"libc",
|
|
1007
|
+
"untrusted",
|
|
1008
|
+
"windows-sys",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "rlbot_flatbuffers"
|
|
1013
|
+
version = "0.16.1"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"flatbuffers",
|
|
1016
|
+
"get-size",
|
|
1017
|
+
"pyo3",
|
|
1018
|
+
"reqwest",
|
|
1019
|
+
"serde",
|
|
1020
|
+
"zip",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "rustc-demangle"
|
|
1025
|
+
version = "0.1.24"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "rustc-hash"
|
|
1031
|
+
version = "2.1.1"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "rustc_version"
|
|
1037
|
+
version = "0.4.1"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"semver",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "rustls"
|
|
1046
|
+
version = "0.23.26"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"once_cell",
|
|
1051
|
+
"ring",
|
|
1052
|
+
"rustls-pki-types",
|
|
1053
|
+
"rustls-webpki",
|
|
1054
|
+
"subtle",
|
|
1055
|
+
"zeroize",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "rustls-pemfile"
|
|
1060
|
+
version = "2.2.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"rustls-pki-types",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "rustls-pki-types"
|
|
1069
|
+
version = "1.11.0"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"web-time",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "rustls-webpki"
|
|
1078
|
+
version = "0.103.1"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"ring",
|
|
1083
|
+
"rustls-pki-types",
|
|
1084
|
+
"untrusted",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "rustversion"
|
|
1089
|
+
version = "1.0.20"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "ryu"
|
|
1095
|
+
version = "1.0.20"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "semver"
|
|
1101
|
+
version = "1.0.26"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "serde"
|
|
1107
|
+
version = "1.0.219"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"serde_derive",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "serde_derive"
|
|
1116
|
+
version = "1.0.219"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"proc-macro2",
|
|
1121
|
+
"quote",
|
|
1122
|
+
"syn",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "serde_json"
|
|
1127
|
+
version = "1.0.140"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"itoa",
|
|
1132
|
+
"memchr",
|
|
1133
|
+
"ryu",
|
|
1134
|
+
"serde",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "serde_urlencoded"
|
|
1139
|
+
version = "0.7.1"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1142
|
+
dependencies = [
|
|
1143
|
+
"form_urlencoded",
|
|
1144
|
+
"itoa",
|
|
1145
|
+
"ryu",
|
|
1146
|
+
"serde",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "shlex"
|
|
1151
|
+
version = "1.3.0"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "simd-adler32"
|
|
1157
|
+
version = "0.3.7"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "slab"
|
|
1163
|
+
version = "0.4.9"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"autocfg",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "smallvec"
|
|
1172
|
+
version = "1.15.0"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "socket2"
|
|
1178
|
+
version = "0.5.9"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"libc",
|
|
1183
|
+
"windows-sys",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "stable_deref_trait"
|
|
1188
|
+
version = "1.2.0"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "subtle"
|
|
1194
|
+
version = "2.6.1"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "syn"
|
|
1200
|
+
version = "2.0.100"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"proc-macro2",
|
|
1205
|
+
"quote",
|
|
1206
|
+
"unicode-ident",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "sync_wrapper"
|
|
1211
|
+
version = "1.0.2"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"futures-core",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "synstructure"
|
|
1220
|
+
version = "0.13.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"proc-macro2",
|
|
1225
|
+
"quote",
|
|
1226
|
+
"syn",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "target-lexicon"
|
|
1231
|
+
version = "0.13.2"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "thiserror"
|
|
1237
|
+
version = "2.0.12"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"thiserror-impl",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "thiserror-impl"
|
|
1246
|
+
version = "2.0.12"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"proc-macro2",
|
|
1251
|
+
"quote",
|
|
1252
|
+
"syn",
|
|
1253
|
+
]
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "tinystr"
|
|
1257
|
+
version = "0.7.6"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
1260
|
+
dependencies = [
|
|
1261
|
+
"displaydoc",
|
|
1262
|
+
"zerovec",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "tinyvec"
|
|
1267
|
+
version = "1.9.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"tinyvec_macros",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "tinyvec_macros"
|
|
1276
|
+
version = "0.1.1"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "tokio"
|
|
1282
|
+
version = "1.44.2"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"backtrace",
|
|
1287
|
+
"bytes",
|
|
1288
|
+
"libc",
|
|
1289
|
+
"mio",
|
|
1290
|
+
"pin-project-lite",
|
|
1291
|
+
"socket2",
|
|
1292
|
+
"windows-sys",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "tokio-rustls"
|
|
1297
|
+
version = "0.26.2"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"rustls",
|
|
1302
|
+
"tokio",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "tower"
|
|
1307
|
+
version = "0.5.2"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"futures-core",
|
|
1312
|
+
"futures-util",
|
|
1313
|
+
"pin-project-lite",
|
|
1314
|
+
"sync_wrapper",
|
|
1315
|
+
"tokio",
|
|
1316
|
+
"tower-layer",
|
|
1317
|
+
"tower-service",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "tower-layer"
|
|
1322
|
+
version = "0.3.3"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "tower-service"
|
|
1328
|
+
version = "0.3.3"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "tracing"
|
|
1334
|
+
version = "0.1.41"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"pin-project-lite",
|
|
1339
|
+
"tracing-core",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "tracing-core"
|
|
1344
|
+
version = "0.1.33"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"once_cell",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "try-lock"
|
|
1353
|
+
version = "0.2.5"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "unicode-ident"
|
|
1359
|
+
version = "1.0.18"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "unindent"
|
|
1365
|
+
version = "0.2.4"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "untrusted"
|
|
1371
|
+
version = "0.9.0"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "url"
|
|
1377
|
+
version = "2.5.4"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"form_urlencoded",
|
|
1382
|
+
"idna",
|
|
1383
|
+
"percent-encoding",
|
|
1384
|
+
]
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "utf16_iter"
|
|
1388
|
+
version = "1.0.5"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "utf8_iter"
|
|
1394
|
+
version = "1.0.4"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "want"
|
|
1400
|
+
version = "0.3.1"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"try-lock",
|
|
1405
|
+
]
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "wasi"
|
|
1409
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "wasi"
|
|
1415
|
+
version = "0.14.2+wasi-0.2.4"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"wit-bindgen-rt",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "wasm-bindgen"
|
|
1424
|
+
version = "0.2.100"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"cfg-if",
|
|
1429
|
+
"once_cell",
|
|
1430
|
+
"rustversion",
|
|
1431
|
+
"wasm-bindgen-macro",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "wasm-bindgen-backend"
|
|
1436
|
+
version = "0.2.100"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"bumpalo",
|
|
1441
|
+
"log",
|
|
1442
|
+
"proc-macro2",
|
|
1443
|
+
"quote",
|
|
1444
|
+
"syn",
|
|
1445
|
+
"wasm-bindgen-shared",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "wasm-bindgen-futures"
|
|
1450
|
+
version = "0.4.50"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"cfg-if",
|
|
1455
|
+
"js-sys",
|
|
1456
|
+
"once_cell",
|
|
1457
|
+
"wasm-bindgen",
|
|
1458
|
+
"web-sys",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "wasm-bindgen-macro"
|
|
1463
|
+
version = "0.2.100"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1466
|
+
dependencies = [
|
|
1467
|
+
"quote",
|
|
1468
|
+
"wasm-bindgen-macro-support",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "wasm-bindgen-macro-support"
|
|
1473
|
+
version = "0.2.100"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"proc-macro2",
|
|
1478
|
+
"quote",
|
|
1479
|
+
"syn",
|
|
1480
|
+
"wasm-bindgen-backend",
|
|
1481
|
+
"wasm-bindgen-shared",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "wasm-bindgen-shared"
|
|
1486
|
+
version = "0.2.100"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"unicode-ident",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "web-sys"
|
|
1495
|
+
version = "0.3.77"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"js-sys",
|
|
1500
|
+
"wasm-bindgen",
|
|
1501
|
+
]
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "web-time"
|
|
1505
|
+
version = "1.1.0"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"js-sys",
|
|
1510
|
+
"wasm-bindgen",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "webpki-roots"
|
|
1515
|
+
version = "0.26.8"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"rustls-pki-types",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "windows-link"
|
|
1524
|
+
version = "0.1.1"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "windows-registry"
|
|
1530
|
+
version = "0.4.0"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"windows-result",
|
|
1535
|
+
"windows-strings",
|
|
1536
|
+
"windows-targets 0.53.0",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "windows-result"
|
|
1541
|
+
version = "0.3.2"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"windows-link",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "windows-strings"
|
|
1550
|
+
version = "0.3.1"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"windows-link",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "windows-sys"
|
|
1559
|
+
version = "0.52.0"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"windows-targets 0.52.6",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "windows-targets"
|
|
1568
|
+
version = "0.52.6"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1573
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1574
|
+
"windows_i686_gnu 0.52.6",
|
|
1575
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1576
|
+
"windows_i686_msvc 0.52.6",
|
|
1577
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1578
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1579
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "windows-targets"
|
|
1584
|
+
version = "0.53.0"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
1589
|
+
"windows_aarch64_msvc 0.53.0",
|
|
1590
|
+
"windows_i686_gnu 0.53.0",
|
|
1591
|
+
"windows_i686_gnullvm 0.53.0",
|
|
1592
|
+
"windows_i686_msvc 0.53.0",
|
|
1593
|
+
"windows_x86_64_gnu 0.53.0",
|
|
1594
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
1595
|
+
"windows_x86_64_msvc 0.53.0",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "windows_aarch64_gnullvm"
|
|
1600
|
+
version = "0.52.6"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "windows_aarch64_gnullvm"
|
|
1606
|
+
version = "0.53.0"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "windows_aarch64_msvc"
|
|
1612
|
+
version = "0.52.6"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "windows_aarch64_msvc"
|
|
1618
|
+
version = "0.53.0"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "windows_i686_gnu"
|
|
1624
|
+
version = "0.52.6"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "windows_i686_gnu"
|
|
1630
|
+
version = "0.53.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "windows_i686_gnullvm"
|
|
1636
|
+
version = "0.52.6"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "windows_i686_gnullvm"
|
|
1642
|
+
version = "0.53.0"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
1645
|
+
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "windows_i686_msvc"
|
|
1648
|
+
version = "0.52.6"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "windows_i686_msvc"
|
|
1654
|
+
version = "0.53.0"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "windows_x86_64_gnu"
|
|
1660
|
+
version = "0.52.6"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "windows_x86_64_gnu"
|
|
1666
|
+
version = "0.53.0"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "windows_x86_64_gnullvm"
|
|
1672
|
+
version = "0.52.6"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "windows_x86_64_gnullvm"
|
|
1678
|
+
version = "0.53.0"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "windows_x86_64_msvc"
|
|
1684
|
+
version = "0.52.6"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "windows_x86_64_msvc"
|
|
1690
|
+
version = "0.53.0"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "wit-bindgen-rt"
|
|
1696
|
+
version = "0.39.0"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
1699
|
+
dependencies = [
|
|
1700
|
+
"bitflags",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "write16"
|
|
1705
|
+
version = "1.0.0"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "writeable"
|
|
1711
|
+
version = "0.5.5"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "yoke"
|
|
1717
|
+
version = "0.7.5"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"serde",
|
|
1722
|
+
"stable_deref_trait",
|
|
1723
|
+
"yoke-derive",
|
|
1724
|
+
"zerofrom",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "yoke-derive"
|
|
1729
|
+
version = "0.7.5"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"proc-macro2",
|
|
1734
|
+
"quote",
|
|
1735
|
+
"syn",
|
|
1736
|
+
"synstructure",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "zerocopy"
|
|
1741
|
+
version = "0.8.24"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"zerocopy-derive",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "zerocopy-derive"
|
|
1750
|
+
version = "0.8.24"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"proc-macro2",
|
|
1755
|
+
"quote",
|
|
1756
|
+
"syn",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "zerofrom"
|
|
1761
|
+
version = "0.1.6"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"zerofrom-derive",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "zerofrom-derive"
|
|
1770
|
+
version = "0.1.6"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"proc-macro2",
|
|
1775
|
+
"quote",
|
|
1776
|
+
"syn",
|
|
1777
|
+
"synstructure",
|
|
1778
|
+
]
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "zeroize"
|
|
1782
|
+
version = "1.8.1"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "zerovec"
|
|
1788
|
+
version = "0.10.4"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"yoke",
|
|
1793
|
+
"zerofrom",
|
|
1794
|
+
"zerovec-derive",
|
|
1795
|
+
]
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "zerovec-derive"
|
|
1799
|
+
version = "0.10.3"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
1802
|
+
dependencies = [
|
|
1803
|
+
"proc-macro2",
|
|
1804
|
+
"quote",
|
|
1805
|
+
"syn",
|
|
1806
|
+
]
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "zip"
|
|
1810
|
+
version = "2.6.1"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"arbitrary",
|
|
1815
|
+
"crc32fast",
|
|
1816
|
+
"crossbeam-utils",
|
|
1817
|
+
"flate2",
|
|
1818
|
+
"indexmap",
|
|
1819
|
+
"memchr",
|
|
1820
|
+
"zopfli",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "zopfli"
|
|
1825
|
+
version = "0.8.1"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"bumpalo",
|
|
1830
|
+
"crc32fast",
|
|
1831
|
+
"lockfree-object-pool",
|
|
1832
|
+
"log",
|
|
1833
|
+
"once_cell",
|
|
1834
|
+
"simd-adler32",
|
|
1835
|
+
]
|