openpit 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.
Files changed (57) hide show
  1. openpit-0.1.0/Cargo.lock +766 -0
  2. openpit-0.1.0/Cargo.toml +9 -0
  3. openpit-0.1.0/PKG-INFO +220 -0
  4. openpit-0.1.0/README.md +194 -0
  5. openpit-0.1.0/bindings/python/Cargo.toml +23 -0
  6. openpit-0.1.0/bindings/python/README.md +194 -0
  7. openpit-0.1.0/bindings/python/src/lib.rs +1516 -0
  8. openpit-0.1.0/bindings/python/tests/conftest.py +33 -0
  9. openpit-0.1.0/bindings/python/tests/integration/test_engine_integration.py +256 -0
  10. openpit-0.1.0/bindings/python/tests/unit/test_engine.py +75 -0
  11. openpit-0.1.0/bindings/python/tests/unit/test_entity_paths.py +35 -0
  12. openpit-0.1.0/bindings/python/tests/unit/test_execution_report.py +28 -0
  13. openpit-0.1.0/bindings/python/tests/unit/test_order.py +44 -0
  14. openpit-0.1.0/bindings/python/tests/unit/test_policy_api.py +103 -0
  15. openpit-0.1.0/bindings/python/tests/unit/test_request_reservation.py +26 -0
  16. openpit-0.1.0/bindings/python/tests/unit/test_results_rejects.py +77 -0
  17. openpit-0.1.0/bindings/python/tests/unit/test_start_policies.py +77 -0
  18. openpit-0.1.0/crates/openpit/Cargo.toml +20 -0
  19. openpit-0.1.0/crates/openpit/README.md +146 -0
  20. openpit-0.1.0/crates/openpit/src/core/engine.rs +1027 -0
  21. openpit-0.1.0/crates/openpit/src/core/instrument.rs +121 -0
  22. openpit-0.1.0/crates/openpit/src/core/mod.rs +23 -0
  23. openpit-0.1.0/crates/openpit/src/core/order.rs +63 -0
  24. openpit-0.1.0/crates/openpit/src/lib.rs +52 -0
  25. openpit-0.1.0/crates/openpit/src/param/asset.rs +156 -0
  26. openpit-0.1.0/crates/openpit/src/param/cash_flow.rs +61 -0
  27. openpit-0.1.0/crates/openpit/src/param/fee.rs +70 -0
  28. openpit-0.1.0/crates/openpit/src/param/mod.rs +1660 -0
  29. openpit-0.1.0/crates/openpit/src/param/pnl.rs +68 -0
  30. openpit-0.1.0/crates/openpit/src/param/position_size.rs +252 -0
  31. openpit-0.1.0/crates/openpit/src/param/price.rs +85 -0
  32. openpit-0.1.0/crates/openpit/src/param/quantity.rs +81 -0
  33. openpit-0.1.0/crates/openpit/src/param/side.rs +106 -0
  34. openpit-0.1.0/crates/openpit/src/param/volume.rs +136 -0
  35. openpit-0.1.0/crates/openpit/src/pretrade/context.rs +117 -0
  36. openpit-0.1.0/crates/openpit/src/pretrade/handles.rs +192 -0
  37. openpit-0.1.0/crates/openpit/src/pretrade/mod.rs +49 -0
  38. openpit-0.1.0/crates/openpit/src/pretrade/mutations.rs +145 -0
  39. openpit-0.1.0/crates/openpit/src/pretrade/policies/mod.rs +28 -0
  40. openpit-0.1.0/crates/openpit/src/pretrade/policies/order_size_limit.rs +409 -0
  41. openpit-0.1.0/crates/openpit/src/pretrade/policies/order_validation.rs +121 -0
  42. openpit-0.1.0/crates/openpit/src/pretrade/policies/pnl_killswitch.rs +597 -0
  43. openpit-0.1.0/crates/openpit/src/pretrade/policies/rate_limit.rs +202 -0
  44. openpit-0.1.0/crates/openpit/src/pretrade/policy.rs +203 -0
  45. openpit-0.1.0/crates/openpit/src/pretrade/reject.rs +311 -0
  46. openpit-0.1.0/crates/openpit/src/pretrade/report.rs +80 -0
  47. openpit-0.1.0/crates/openpit/src/pretrade/request.rs +113 -0
  48. openpit-0.1.0/crates/openpit/src/pretrade/reservation.rs +191 -0
  49. openpit-0.1.0/crates/openpit/src/pretrade/start_pre_trade_time.rs +48 -0
  50. openpit-0.1.0/crates/openpit/tests/pretrade_scenario.rs +642 -0
  51. openpit-0.1.0/pyproject.toml +57 -0
  52. openpit-0.1.0/python/openpit/__init__.py +13 -0
  53. openpit-0.1.0/python/openpit/_openpit.pyi +351 -0
  54. openpit-0.1.0/python/openpit/core.py +3 -0
  55. openpit-0.1.0/python/openpit/pretrade/__init__.py +39 -0
  56. openpit-0.1.0/python/openpit/pretrade/policies.py +15 -0
  57. openpit-0.1.0/python/openpit/pretrade/policy.py +375 -0
@@ -0,0 +1,766 @@
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",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "arrayvec"
18
+ version = "0.7.6"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
21
+
22
+ [[package]]
23
+ name = "autocfg"
24
+ version = "1.5.0"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
27
+
28
+ [[package]]
29
+ name = "bitvec"
30
+ version = "1.0.1"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
33
+ dependencies = [
34
+ "funty",
35
+ "radium",
36
+ "tap",
37
+ "wyz",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "borsh"
42
+ version = "1.6.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
45
+ dependencies = [
46
+ "borsh-derive",
47
+ "cfg_aliases",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "borsh-derive"
52
+ version = "1.6.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
55
+ dependencies = [
56
+ "once_cell",
57
+ "proc-macro-crate",
58
+ "proc-macro2",
59
+ "quote",
60
+ "syn 2.0.117",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "bumpalo"
65
+ version = "3.20.2"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
68
+
69
+ [[package]]
70
+ name = "bytecheck"
71
+ version = "0.6.12"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
74
+ dependencies = [
75
+ "bytecheck_derive",
76
+ "ptr_meta",
77
+ "simdutf8",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "bytecheck_derive"
82
+ version = "0.6.12"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
85
+ dependencies = [
86
+ "proc-macro2",
87
+ "quote",
88
+ "syn 1.0.109",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "bytes"
93
+ version = "1.11.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
96
+
97
+ [[package]]
98
+ name = "cc"
99
+ version = "1.2.56"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
102
+ dependencies = [
103
+ "find-msvc-tools",
104
+ "shlex",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "cfg-if"
109
+ version = "1.0.4"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
112
+
113
+ [[package]]
114
+ name = "cfg_aliases"
115
+ version = "0.2.1"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
118
+
119
+ [[package]]
120
+ name = "equivalent"
121
+ version = "1.0.2"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
124
+
125
+ [[package]]
126
+ name = "find-msvc-tools"
127
+ version = "0.1.9"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
130
+
131
+ [[package]]
132
+ name = "funty"
133
+ version = "2.0.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
136
+
137
+ [[package]]
138
+ name = "getrandom"
139
+ version = "0.2.17"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
142
+ dependencies = [
143
+ "cfg-if",
144
+ "libc",
145
+ "wasi",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "hashbrown"
150
+ version = "0.12.3"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
153
+ dependencies = [
154
+ "ahash",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "hashbrown"
159
+ version = "0.16.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
162
+
163
+ [[package]]
164
+ name = "heck"
165
+ version = "0.5.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
168
+
169
+ [[package]]
170
+ name = "indexmap"
171
+ version = "2.13.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
174
+ dependencies = [
175
+ "equivalent",
176
+ "hashbrown 0.16.1",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "indoc"
181
+ version = "2.0.7"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
184
+ dependencies = [
185
+ "rustversion",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "itoa"
190
+ version = "1.0.17"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
193
+
194
+ [[package]]
195
+ name = "js-sys"
196
+ version = "0.3.91"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
199
+ dependencies = [
200
+ "once_cell",
201
+ "wasm-bindgen",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "libc"
206
+ version = "0.2.182"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
209
+
210
+ [[package]]
211
+ name = "memchr"
212
+ version = "2.8.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
215
+
216
+ [[package]]
217
+ name = "memoffset"
218
+ version = "0.9.1"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
221
+ dependencies = [
222
+ "autocfg",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "num-traits"
227
+ version = "0.2.19"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
230
+ dependencies = [
231
+ "autocfg",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "once_cell"
236
+ version = "1.21.3"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
239
+
240
+ [[package]]
241
+ name = "openpit"
242
+ version = "0.1.0"
243
+ dependencies = [
244
+ "rust_decimal",
245
+ "serde",
246
+ "smol_str",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "openpit-python"
251
+ version = "0.1.0"
252
+ dependencies = [
253
+ "openpit",
254
+ "pyo3",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "pit-ffi"
259
+ version = "0.1.0"
260
+ dependencies = [
261
+ "openpit",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "portable-atomic"
266
+ version = "1.13.1"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
269
+
270
+ [[package]]
271
+ name = "ppv-lite86"
272
+ version = "0.2.21"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
275
+ dependencies = [
276
+ "zerocopy",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "proc-macro-crate"
281
+ version = "3.4.0"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
284
+ dependencies = [
285
+ "toml_edit",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "proc-macro2"
290
+ version = "1.0.106"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
293
+ dependencies = [
294
+ "unicode-ident",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "ptr_meta"
299
+ version = "0.1.4"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
302
+ dependencies = [
303
+ "ptr_meta_derive",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "ptr_meta_derive"
308
+ version = "0.1.4"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
311
+ dependencies = [
312
+ "proc-macro2",
313
+ "quote",
314
+ "syn 1.0.109",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "pyo3"
319
+ version = "0.22.6"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
322
+ dependencies = [
323
+ "cfg-if",
324
+ "indoc",
325
+ "libc",
326
+ "memoffset",
327
+ "once_cell",
328
+ "portable-atomic",
329
+ "pyo3-build-config",
330
+ "pyo3-ffi",
331
+ "pyo3-macros",
332
+ "unindent",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "pyo3-build-config"
337
+ version = "0.22.6"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
340
+ dependencies = [
341
+ "once_cell",
342
+ "python3-dll-a",
343
+ "target-lexicon",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "pyo3-ffi"
348
+ version = "0.22.6"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
351
+ dependencies = [
352
+ "libc",
353
+ "pyo3-build-config",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "pyo3-macros"
358
+ version = "0.22.6"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
361
+ dependencies = [
362
+ "proc-macro2",
363
+ "pyo3-macros-backend",
364
+ "quote",
365
+ "syn 2.0.117",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "pyo3-macros-backend"
370
+ version = "0.22.6"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
373
+ dependencies = [
374
+ "heck",
375
+ "proc-macro2",
376
+ "pyo3-build-config",
377
+ "quote",
378
+ "syn 2.0.117",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "python3-dll-a"
383
+ version = "0.2.14"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
386
+ dependencies = [
387
+ "cc",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "quote"
392
+ version = "1.0.44"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
395
+ dependencies = [
396
+ "proc-macro2",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "radium"
401
+ version = "0.7.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
404
+
405
+ [[package]]
406
+ name = "rand"
407
+ version = "0.8.5"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
410
+ dependencies = [
411
+ "libc",
412
+ "rand_chacha",
413
+ "rand_core",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "rand_chacha"
418
+ version = "0.3.1"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
421
+ dependencies = [
422
+ "ppv-lite86",
423
+ "rand_core",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "rand_core"
428
+ version = "0.6.4"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
431
+ dependencies = [
432
+ "getrandom",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "rend"
437
+ version = "0.4.2"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
440
+ dependencies = [
441
+ "bytecheck",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "rkyv"
446
+ version = "0.7.46"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
449
+ dependencies = [
450
+ "bitvec",
451
+ "bytecheck",
452
+ "bytes",
453
+ "hashbrown 0.12.3",
454
+ "ptr_meta",
455
+ "rend",
456
+ "rkyv_derive",
457
+ "seahash",
458
+ "tinyvec",
459
+ "uuid",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "rkyv_derive"
464
+ version = "0.7.46"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
467
+ dependencies = [
468
+ "proc-macro2",
469
+ "quote",
470
+ "syn 1.0.109",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "rust_decimal"
475
+ version = "1.40.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
478
+ dependencies = [
479
+ "arrayvec",
480
+ "borsh",
481
+ "bytes",
482
+ "num-traits",
483
+ "rand",
484
+ "rkyv",
485
+ "serde",
486
+ "serde_json",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "rustversion"
491
+ version = "1.0.22"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
494
+
495
+ [[package]]
496
+ name = "seahash"
497
+ version = "4.1.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
500
+
501
+ [[package]]
502
+ name = "serde"
503
+ version = "1.0.228"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
506
+ dependencies = [
507
+ "serde_core",
508
+ "serde_derive",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "serde_core"
513
+ version = "1.0.228"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
516
+ dependencies = [
517
+ "serde_derive",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "serde_derive"
522
+ version = "1.0.228"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
525
+ dependencies = [
526
+ "proc-macro2",
527
+ "quote",
528
+ "syn 2.0.117",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "serde_json"
533
+ version = "1.0.149"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
536
+ dependencies = [
537
+ "itoa",
538
+ "memchr",
539
+ "serde",
540
+ "serde_core",
541
+ "zmij",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "shlex"
546
+ version = "1.3.0"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
549
+
550
+ [[package]]
551
+ name = "simdutf8"
552
+ version = "0.1.5"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
555
+
556
+ [[package]]
557
+ name = "smol_str"
558
+ version = "0.3.6"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523"
561
+ dependencies = [
562
+ "borsh",
563
+ "serde_core",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "syn"
568
+ version = "1.0.109"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
571
+ dependencies = [
572
+ "proc-macro2",
573
+ "quote",
574
+ "unicode-ident",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "syn"
579
+ version = "2.0.117"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
582
+ dependencies = [
583
+ "proc-macro2",
584
+ "quote",
585
+ "unicode-ident",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "tap"
590
+ version = "1.0.1"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
593
+
594
+ [[package]]
595
+ name = "target-lexicon"
596
+ version = "0.12.16"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
599
+
600
+ [[package]]
601
+ name = "tinyvec"
602
+ version = "1.10.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
605
+ dependencies = [
606
+ "tinyvec_macros",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "tinyvec_macros"
611
+ version = "0.1.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
614
+
615
+ [[package]]
616
+ name = "toml_datetime"
617
+ version = "0.7.5+spec-1.1.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
620
+ dependencies = [
621
+ "serde_core",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "toml_edit"
626
+ version = "0.23.10+spec-1.0.0"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
629
+ dependencies = [
630
+ "indexmap",
631
+ "toml_datetime",
632
+ "toml_parser",
633
+ "winnow",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "toml_parser"
638
+ version = "1.0.9+spec-1.1.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
641
+ dependencies = [
642
+ "winnow",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "unicode-ident"
647
+ version = "1.0.24"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
650
+
651
+ [[package]]
652
+ name = "unindent"
653
+ version = "0.2.4"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
656
+
657
+ [[package]]
658
+ name = "uuid"
659
+ version = "1.21.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
662
+ dependencies = [
663
+ "js-sys",
664
+ "wasm-bindgen",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "version_check"
669
+ version = "0.9.5"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
672
+
673
+ [[package]]
674
+ name = "wasi"
675
+ version = "0.11.1+wasi-snapshot-preview1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
678
+
679
+ [[package]]
680
+ name = "wasm-bindgen"
681
+ version = "0.2.114"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
684
+ dependencies = [
685
+ "cfg-if",
686
+ "once_cell",
687
+ "rustversion",
688
+ "wasm-bindgen-macro",
689
+ "wasm-bindgen-shared",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "wasm-bindgen-macro"
694
+ version = "0.2.114"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
697
+ dependencies = [
698
+ "quote",
699
+ "wasm-bindgen-macro-support",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "wasm-bindgen-macro-support"
704
+ version = "0.2.114"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
707
+ dependencies = [
708
+ "bumpalo",
709
+ "proc-macro2",
710
+ "quote",
711
+ "syn 2.0.117",
712
+ "wasm-bindgen-shared",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "wasm-bindgen-shared"
717
+ version = "0.2.114"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
720
+ dependencies = [
721
+ "unicode-ident",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "winnow"
726
+ version = "0.7.14"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
729
+ dependencies = [
730
+ "memchr",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "wyz"
735
+ version = "0.5.1"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
738
+ dependencies = [
739
+ "tap",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "zerocopy"
744
+ version = "0.8.40"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
747
+ dependencies = [
748
+ "zerocopy-derive",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "zerocopy-derive"
753
+ version = "0.8.40"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
756
+ dependencies = [
757
+ "proc-macro2",
758
+ "quote",
759
+ "syn 2.0.117",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "zmij"
764
+ version = "1.0.21"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"