pmxt 0.1.0__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.
- pmxt-0.1.0/Cargo.lock +1452 -0
- pmxt-0.1.0/Cargo.toml +23 -0
- pmxt-0.1.0/PKG-INFO +57 -0
- pmxt-0.1.0/README.md +47 -0
- pmxt-0.1.0/bindings/python/Cargo.toml +21 -0
- pmxt-0.1.0/bindings/python/README.md +47 -0
- pmxt-0.1.0/bindings/python/src/lib.rs +280 -0
- pmxt-0.1.0/crates/core/Cargo.toml +18 -0
- pmxt-0.1.0/crates/core/src/lib.rs +195 -0
- pmxt-0.1.0/crates/test-market/Cargo.toml +20 -0
- pmxt-0.1.0/crates/test-market/src/lib.rs +269 -0
- pmxt-0.1.0/pyproject.toml +18 -0
pmxt-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1452 @@
|
|
|
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.7.8"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"getrandom 0.2.16",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "aho-corasick"
|
|
18
|
+
version = "1.1.4"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"memchr",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "android_system_properties"
|
|
27
|
+
version = "0.1.5"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"libc",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "anyhow"
|
|
36
|
+
version = "1.0.100"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "arrayvec"
|
|
42
|
+
version = "0.7.6"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "async-trait"
|
|
48
|
+
version = "0.1.89"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
51
|
+
dependencies = [
|
|
52
|
+
"proc-macro2",
|
|
53
|
+
"quote",
|
|
54
|
+
"syn 2.0.112",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "autocfg"
|
|
59
|
+
version = "1.5.0"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "bitflags"
|
|
65
|
+
version = "2.10.0"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "bitvec"
|
|
71
|
+
version = "1.0.1"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"funty",
|
|
76
|
+
"radium",
|
|
77
|
+
"tap",
|
|
78
|
+
"wyz",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "borsh"
|
|
83
|
+
version = "1.6.0"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"borsh-derive",
|
|
88
|
+
"cfg_aliases",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "borsh-derive"
|
|
93
|
+
version = "1.6.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"once_cell",
|
|
98
|
+
"proc-macro-crate",
|
|
99
|
+
"proc-macro2",
|
|
100
|
+
"quote",
|
|
101
|
+
"syn 2.0.112",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "bumpalo"
|
|
106
|
+
version = "3.19.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "bytecheck"
|
|
112
|
+
version = "0.6.12"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"bytecheck_derive",
|
|
117
|
+
"ptr_meta",
|
|
118
|
+
"simdutf8",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "bytecheck_derive"
|
|
123
|
+
version = "0.6.12"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"proc-macro2",
|
|
128
|
+
"quote",
|
|
129
|
+
"syn 1.0.109",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "bytes"
|
|
134
|
+
version = "1.11.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "cc"
|
|
140
|
+
version = "1.2.51"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"find-msvc-tools",
|
|
145
|
+
"shlex",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "cfg-if"
|
|
150
|
+
version = "1.0.4"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "cfg_aliases"
|
|
156
|
+
version = "0.2.1"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "chrono"
|
|
162
|
+
version = "0.4.42"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"iana-time-zone",
|
|
167
|
+
"js-sys",
|
|
168
|
+
"num-traits",
|
|
169
|
+
"serde",
|
|
170
|
+
"wasm-bindgen",
|
|
171
|
+
"windows-link",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "convert_case"
|
|
176
|
+
version = "0.6.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"unicode-segmentation",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "core-foundation-sys"
|
|
185
|
+
version = "0.8.7"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "ctor"
|
|
191
|
+
version = "0.2.9"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"quote",
|
|
196
|
+
"syn 2.0.112",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "equivalent"
|
|
201
|
+
version = "1.0.2"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "errno"
|
|
207
|
+
version = "0.3.14"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"libc",
|
|
212
|
+
"windows-sys 0.61.2",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "find-msvc-tools"
|
|
217
|
+
version = "0.1.6"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "funty"
|
|
223
|
+
version = "2.0.0"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "futures"
|
|
229
|
+
version = "0.3.31"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"futures-channel",
|
|
234
|
+
"futures-core",
|
|
235
|
+
"futures-executor",
|
|
236
|
+
"futures-io",
|
|
237
|
+
"futures-sink",
|
|
238
|
+
"futures-task",
|
|
239
|
+
"futures-util",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "futures-channel"
|
|
244
|
+
version = "0.3.31"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"futures-core",
|
|
249
|
+
"futures-sink",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "futures-core"
|
|
254
|
+
version = "0.3.31"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "futures-executor"
|
|
260
|
+
version = "0.3.31"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"futures-core",
|
|
265
|
+
"futures-task",
|
|
266
|
+
"futures-util",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "futures-io"
|
|
271
|
+
version = "0.3.31"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "futures-macro"
|
|
277
|
+
version = "0.3.31"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"proc-macro2",
|
|
282
|
+
"quote",
|
|
283
|
+
"syn 2.0.112",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "futures-sink"
|
|
288
|
+
version = "0.3.31"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "futures-task"
|
|
294
|
+
version = "0.3.31"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "futures-util"
|
|
300
|
+
version = "0.3.31"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"futures-channel",
|
|
305
|
+
"futures-core",
|
|
306
|
+
"futures-io",
|
|
307
|
+
"futures-macro",
|
|
308
|
+
"futures-sink",
|
|
309
|
+
"futures-task",
|
|
310
|
+
"memchr",
|
|
311
|
+
"pin-project-lite",
|
|
312
|
+
"pin-utils",
|
|
313
|
+
"slab",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "getrandom"
|
|
318
|
+
version = "0.2.16"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"cfg-if",
|
|
323
|
+
"libc",
|
|
324
|
+
"wasi",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "getrandom"
|
|
329
|
+
version = "0.3.4"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"cfg-if",
|
|
334
|
+
"libc",
|
|
335
|
+
"r-efi",
|
|
336
|
+
"wasip2",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "hashbrown"
|
|
341
|
+
version = "0.12.3"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"ahash",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "hashbrown"
|
|
350
|
+
version = "0.16.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "heck"
|
|
356
|
+
version = "0.4.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "iana-time-zone"
|
|
362
|
+
version = "0.1.64"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"android_system_properties",
|
|
367
|
+
"core-foundation-sys",
|
|
368
|
+
"iana-time-zone-haiku",
|
|
369
|
+
"js-sys",
|
|
370
|
+
"log",
|
|
371
|
+
"wasm-bindgen",
|
|
372
|
+
"windows-core",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "iana-time-zone-haiku"
|
|
377
|
+
version = "0.1.2"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cc",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "indexmap"
|
|
386
|
+
version = "2.12.1"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"equivalent",
|
|
391
|
+
"hashbrown 0.16.1",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "indoc"
|
|
396
|
+
version = "2.0.7"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"rustversion",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "itoa"
|
|
405
|
+
version = "1.0.17"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "js-sys"
|
|
411
|
+
version = "0.3.83"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"once_cell",
|
|
416
|
+
"wasm-bindgen",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "libc"
|
|
421
|
+
version = "0.2.179"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "libloading"
|
|
427
|
+
version = "0.8.9"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"cfg-if",
|
|
432
|
+
"windows-link",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "lock_api"
|
|
437
|
+
version = "0.4.14"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"scopeguard",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "log"
|
|
446
|
+
version = "0.4.29"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "memchr"
|
|
452
|
+
version = "2.7.6"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "memoffset"
|
|
458
|
+
version = "0.9.1"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"autocfg",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "mio"
|
|
467
|
+
version = "1.1.1"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"libc",
|
|
472
|
+
"wasi",
|
|
473
|
+
"windows-sys 0.61.2",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "napi"
|
|
478
|
+
version = "2.16.17"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"bitflags",
|
|
483
|
+
"ctor",
|
|
484
|
+
"napi-derive",
|
|
485
|
+
"napi-sys",
|
|
486
|
+
"once_cell",
|
|
487
|
+
"tokio",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "napi-build"
|
|
492
|
+
version = "2.3.1"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "napi-derive"
|
|
498
|
+
version = "2.16.13"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"cfg-if",
|
|
503
|
+
"convert_case",
|
|
504
|
+
"napi-derive-backend",
|
|
505
|
+
"proc-macro2",
|
|
506
|
+
"quote",
|
|
507
|
+
"syn 2.0.112",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "napi-derive-backend"
|
|
512
|
+
version = "1.0.75"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"convert_case",
|
|
517
|
+
"once_cell",
|
|
518
|
+
"proc-macro2",
|
|
519
|
+
"quote",
|
|
520
|
+
"regex",
|
|
521
|
+
"semver",
|
|
522
|
+
"syn 2.0.112",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "napi-sys"
|
|
527
|
+
version = "2.4.0"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"libloading",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "num-traits"
|
|
536
|
+
version = "0.2.19"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"autocfg",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "once_cell"
|
|
545
|
+
version = "1.21.3"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "parking_lot"
|
|
551
|
+
version = "0.12.5"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"lock_api",
|
|
556
|
+
"parking_lot_core",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "parking_lot_core"
|
|
561
|
+
version = "0.9.12"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"cfg-if",
|
|
566
|
+
"libc",
|
|
567
|
+
"redox_syscall",
|
|
568
|
+
"smallvec",
|
|
569
|
+
"windows-link",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "pin-project-lite"
|
|
574
|
+
version = "0.2.16"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "pin-utils"
|
|
580
|
+
version = "0.1.0"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "pmxt"
|
|
586
|
+
version = "0.1.0"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"pmxt-core",
|
|
589
|
+
"pmxt-test-market",
|
|
590
|
+
"pyo3",
|
|
591
|
+
"pyo3-asyncio",
|
|
592
|
+
"pythonize",
|
|
593
|
+
"rust_decimal",
|
|
594
|
+
"tokio",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "pmxt-core"
|
|
599
|
+
version = "0.1.0"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"anyhow",
|
|
602
|
+
"async-trait",
|
|
603
|
+
"chrono",
|
|
604
|
+
"rust_decimal",
|
|
605
|
+
"serde",
|
|
606
|
+
"serde_json",
|
|
607
|
+
"thiserror",
|
|
608
|
+
"tokio",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "pmxt-node"
|
|
613
|
+
version = "0.0.1"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"napi",
|
|
616
|
+
"napi-build",
|
|
617
|
+
"napi-derive",
|
|
618
|
+
"pmxt-core",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "pmxt-test-market"
|
|
623
|
+
version = "0.1.0"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"anyhow",
|
|
626
|
+
"async-trait",
|
|
627
|
+
"chrono",
|
|
628
|
+
"pmxt-core",
|
|
629
|
+
"rust_decimal",
|
|
630
|
+
"rust_decimal_macros",
|
|
631
|
+
"serde",
|
|
632
|
+
"serde_json",
|
|
633
|
+
"tokio",
|
|
634
|
+
"uuid",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "portable-atomic"
|
|
639
|
+
version = "1.13.0"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "ppv-lite86"
|
|
645
|
+
version = "0.2.21"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"zerocopy",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "proc-macro-crate"
|
|
654
|
+
version = "3.4.0"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"toml_edit",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "proc-macro2"
|
|
663
|
+
version = "1.0.104"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"unicode-ident",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "ptr_meta"
|
|
672
|
+
version = "0.1.4"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"ptr_meta_derive",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "ptr_meta_derive"
|
|
681
|
+
version = "0.1.4"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"proc-macro2",
|
|
686
|
+
"quote",
|
|
687
|
+
"syn 1.0.109",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "pyo3"
|
|
692
|
+
version = "0.20.3"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"cfg-if",
|
|
697
|
+
"indoc",
|
|
698
|
+
"libc",
|
|
699
|
+
"memoffset",
|
|
700
|
+
"parking_lot",
|
|
701
|
+
"portable-atomic",
|
|
702
|
+
"pyo3-build-config",
|
|
703
|
+
"pyo3-ffi",
|
|
704
|
+
"pyo3-macros",
|
|
705
|
+
"unindent",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "pyo3-asyncio"
|
|
710
|
+
version = "0.20.0"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"futures",
|
|
715
|
+
"once_cell",
|
|
716
|
+
"pin-project-lite",
|
|
717
|
+
"pyo3",
|
|
718
|
+
"tokio",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "pyo3-build-config"
|
|
723
|
+
version = "0.20.3"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"once_cell",
|
|
728
|
+
"target-lexicon",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "pyo3-ffi"
|
|
733
|
+
version = "0.20.3"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"libc",
|
|
738
|
+
"pyo3-build-config",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "pyo3-macros"
|
|
743
|
+
version = "0.20.3"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"proc-macro2",
|
|
748
|
+
"pyo3-macros-backend",
|
|
749
|
+
"quote",
|
|
750
|
+
"syn 2.0.112",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "pyo3-macros-backend"
|
|
755
|
+
version = "0.20.3"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"heck",
|
|
760
|
+
"proc-macro2",
|
|
761
|
+
"pyo3-build-config",
|
|
762
|
+
"quote",
|
|
763
|
+
"syn 2.0.112",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "pythonize"
|
|
768
|
+
version = "0.20.0"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "ffd1c3ef39c725d63db5f9bc455461bafd80540cb7824c61afb823501921a850"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"pyo3",
|
|
773
|
+
"serde",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "quote"
|
|
778
|
+
version = "1.0.42"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"proc-macro2",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "r-efi"
|
|
787
|
+
version = "5.3.0"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "radium"
|
|
793
|
+
version = "0.7.0"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "rand"
|
|
799
|
+
version = "0.8.5"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"libc",
|
|
804
|
+
"rand_chacha",
|
|
805
|
+
"rand_core",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "rand_chacha"
|
|
810
|
+
version = "0.3.1"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"ppv-lite86",
|
|
815
|
+
"rand_core",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "rand_core"
|
|
820
|
+
version = "0.6.4"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"getrandom 0.2.16",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "redox_syscall"
|
|
829
|
+
version = "0.5.18"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"bitflags",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "regex"
|
|
838
|
+
version = "1.12.2"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"aho-corasick",
|
|
843
|
+
"memchr",
|
|
844
|
+
"regex-automata",
|
|
845
|
+
"regex-syntax",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "regex-automata"
|
|
850
|
+
version = "0.4.13"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"aho-corasick",
|
|
855
|
+
"memchr",
|
|
856
|
+
"regex-syntax",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "regex-syntax"
|
|
861
|
+
version = "0.8.8"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "rend"
|
|
867
|
+
version = "0.4.2"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"bytecheck",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "rkyv"
|
|
876
|
+
version = "0.7.45"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"bitvec",
|
|
881
|
+
"bytecheck",
|
|
882
|
+
"bytes",
|
|
883
|
+
"hashbrown 0.12.3",
|
|
884
|
+
"ptr_meta",
|
|
885
|
+
"rend",
|
|
886
|
+
"rkyv_derive",
|
|
887
|
+
"seahash",
|
|
888
|
+
"tinyvec",
|
|
889
|
+
"uuid",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "rkyv_derive"
|
|
894
|
+
version = "0.7.45"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"proc-macro2",
|
|
899
|
+
"quote",
|
|
900
|
+
"syn 1.0.109",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "rust_decimal"
|
|
905
|
+
version = "1.39.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"arrayvec",
|
|
910
|
+
"borsh",
|
|
911
|
+
"bytes",
|
|
912
|
+
"num-traits",
|
|
913
|
+
"rand",
|
|
914
|
+
"rkyv",
|
|
915
|
+
"serde",
|
|
916
|
+
"serde_json",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "rust_decimal_macros"
|
|
921
|
+
version = "1.39.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "ae8c0cb48f413ebe24dc2d148788e0efbe09ba3e011d9277162f2eaf8e1069a3"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"quote",
|
|
926
|
+
"syn 2.0.112",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "rustversion"
|
|
931
|
+
version = "1.0.22"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "scopeguard"
|
|
937
|
+
version = "1.2.0"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "seahash"
|
|
943
|
+
version = "4.1.0"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "semver"
|
|
949
|
+
version = "1.0.27"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "serde"
|
|
955
|
+
version = "1.0.228"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"serde_core",
|
|
960
|
+
"serde_derive",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "serde_core"
|
|
965
|
+
version = "1.0.228"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"serde_derive",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "serde_derive"
|
|
974
|
+
version = "1.0.228"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"proc-macro2",
|
|
979
|
+
"quote",
|
|
980
|
+
"syn 2.0.112",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "serde_json"
|
|
985
|
+
version = "1.0.148"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"itoa",
|
|
990
|
+
"memchr",
|
|
991
|
+
"serde",
|
|
992
|
+
"serde_core",
|
|
993
|
+
"zmij",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "shlex"
|
|
998
|
+
version = "1.3.0"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "signal-hook-registry"
|
|
1004
|
+
version = "1.4.8"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"errno",
|
|
1009
|
+
"libc",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "simdutf8"
|
|
1014
|
+
version = "0.1.5"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "slab"
|
|
1020
|
+
version = "0.4.11"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "smallvec"
|
|
1026
|
+
version = "1.15.1"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "socket2"
|
|
1032
|
+
version = "0.6.1"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"libc",
|
|
1037
|
+
"windows-sys 0.60.2",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "syn"
|
|
1042
|
+
version = "1.0.109"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"proc-macro2",
|
|
1047
|
+
"quote",
|
|
1048
|
+
"unicode-ident",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "syn"
|
|
1053
|
+
version = "2.0.112"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"unicode-ident",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "tap"
|
|
1064
|
+
version = "1.0.1"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "target-lexicon"
|
|
1070
|
+
version = "0.12.16"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "thiserror"
|
|
1076
|
+
version = "1.0.69"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"thiserror-impl",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "thiserror-impl"
|
|
1085
|
+
version = "1.0.69"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"proc-macro2",
|
|
1090
|
+
"quote",
|
|
1091
|
+
"syn 2.0.112",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "tinyvec"
|
|
1096
|
+
version = "1.10.0"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"tinyvec_macros",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "tinyvec_macros"
|
|
1105
|
+
version = "0.1.1"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "tokio"
|
|
1111
|
+
version = "1.49.0"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"bytes",
|
|
1116
|
+
"libc",
|
|
1117
|
+
"mio",
|
|
1118
|
+
"parking_lot",
|
|
1119
|
+
"pin-project-lite",
|
|
1120
|
+
"signal-hook-registry",
|
|
1121
|
+
"socket2",
|
|
1122
|
+
"tokio-macros",
|
|
1123
|
+
"windows-sys 0.61.2",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "tokio-macros"
|
|
1128
|
+
version = "2.6.0"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"proc-macro2",
|
|
1133
|
+
"quote",
|
|
1134
|
+
"syn 2.0.112",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "toml_datetime"
|
|
1139
|
+
version = "0.7.5+spec-1.1.0"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1142
|
+
dependencies = [
|
|
1143
|
+
"serde_core",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "toml_edit"
|
|
1148
|
+
version = "0.23.10+spec-1.0.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"indexmap",
|
|
1153
|
+
"toml_datetime",
|
|
1154
|
+
"toml_parser",
|
|
1155
|
+
"winnow",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "toml_parser"
|
|
1160
|
+
version = "1.0.6+spec-1.1.0"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"winnow",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "unicode-ident"
|
|
1169
|
+
version = "1.0.22"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "unicode-segmentation"
|
|
1175
|
+
version = "1.12.0"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "unindent"
|
|
1181
|
+
version = "0.2.4"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "uuid"
|
|
1187
|
+
version = "1.19.0"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"getrandom 0.3.4",
|
|
1192
|
+
"js-sys",
|
|
1193
|
+
"wasm-bindgen",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "version_check"
|
|
1198
|
+
version = "0.9.5"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "wasi"
|
|
1204
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "wasip2"
|
|
1210
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"wit-bindgen",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "wasm-bindgen"
|
|
1219
|
+
version = "0.2.106"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"cfg-if",
|
|
1224
|
+
"once_cell",
|
|
1225
|
+
"rustversion",
|
|
1226
|
+
"wasm-bindgen-macro",
|
|
1227
|
+
"wasm-bindgen-shared",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "wasm-bindgen-macro"
|
|
1232
|
+
version = "0.2.106"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"quote",
|
|
1237
|
+
"wasm-bindgen-macro-support",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "wasm-bindgen-macro-support"
|
|
1242
|
+
version = "0.2.106"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"bumpalo",
|
|
1247
|
+
"proc-macro2",
|
|
1248
|
+
"quote",
|
|
1249
|
+
"syn 2.0.112",
|
|
1250
|
+
"wasm-bindgen-shared",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "wasm-bindgen-shared"
|
|
1255
|
+
version = "0.2.106"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1258
|
+
dependencies = [
|
|
1259
|
+
"unicode-ident",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "windows-core"
|
|
1264
|
+
version = "0.62.2"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"windows-implement",
|
|
1269
|
+
"windows-interface",
|
|
1270
|
+
"windows-link",
|
|
1271
|
+
"windows-result",
|
|
1272
|
+
"windows-strings",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "windows-implement"
|
|
1277
|
+
version = "0.60.2"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"proc-macro2",
|
|
1282
|
+
"quote",
|
|
1283
|
+
"syn 2.0.112",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "windows-interface"
|
|
1288
|
+
version = "0.59.3"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"proc-macro2",
|
|
1293
|
+
"quote",
|
|
1294
|
+
"syn 2.0.112",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "windows-link"
|
|
1299
|
+
version = "0.2.1"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "windows-result"
|
|
1305
|
+
version = "0.4.1"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"windows-link",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "windows-strings"
|
|
1314
|
+
version = "0.5.1"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"windows-link",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "windows-sys"
|
|
1323
|
+
version = "0.60.2"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"windows-targets",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "windows-sys"
|
|
1332
|
+
version = "0.61.2"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"windows-link",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "windows-targets"
|
|
1341
|
+
version = "0.53.5"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"windows-link",
|
|
1346
|
+
"windows_aarch64_gnullvm",
|
|
1347
|
+
"windows_aarch64_msvc",
|
|
1348
|
+
"windows_i686_gnu",
|
|
1349
|
+
"windows_i686_gnullvm",
|
|
1350
|
+
"windows_i686_msvc",
|
|
1351
|
+
"windows_x86_64_gnu",
|
|
1352
|
+
"windows_x86_64_gnullvm",
|
|
1353
|
+
"windows_x86_64_msvc",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "windows_aarch64_gnullvm"
|
|
1358
|
+
version = "0.53.1"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "windows_aarch64_msvc"
|
|
1364
|
+
version = "0.53.1"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "windows_i686_gnu"
|
|
1370
|
+
version = "0.53.1"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "windows_i686_gnullvm"
|
|
1376
|
+
version = "0.53.1"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "windows_i686_msvc"
|
|
1382
|
+
version = "0.53.1"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "windows_x86_64_gnu"
|
|
1388
|
+
version = "0.53.1"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "windows_x86_64_gnullvm"
|
|
1394
|
+
version = "0.53.1"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "windows_x86_64_msvc"
|
|
1400
|
+
version = "0.53.1"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "winnow"
|
|
1406
|
+
version = "0.7.14"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"memchr",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "wit-bindgen"
|
|
1415
|
+
version = "0.46.0"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "wyz"
|
|
1421
|
+
version = "0.5.1"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"tap",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "zerocopy"
|
|
1430
|
+
version = "0.8.31"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"zerocopy-derive",
|
|
1435
|
+
]
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "zerocopy-derive"
|
|
1439
|
+
version = "0.8.31"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"proc-macro2",
|
|
1444
|
+
"quote",
|
|
1445
|
+
"syn 2.0.112",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "zmij"
|
|
1450
|
+
version = "1.0.8"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "317f17ff091ac4515f17cc7a190d2769a8c9a96d227de5d64b500b01cda8f2cd"
|