ratel-ai 0.1.6__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.
- ratel_ai-0.1.6/Cargo.lock +1076 -0
- ratel_ai-0.1.6/Cargo.toml +15 -0
- ratel_ai-0.1.6/LICENSE.md +41 -0
- ratel_ai-0.1.6/PKG-INFO +160 -0
- ratel_ai-0.1.6/README.md +134 -0
- ratel_ai-0.1.6/pyproject.toml +74 -0
- ratel_ai-0.1.6/ratel_ai/__init__.py +48 -0
- ratel_ai-0.1.6/ratel_ai/_native.pyi +41 -0
- ratel_ai-0.1.6/ratel_ai/catalog.py +170 -0
- ratel_ai-0.1.6/ratel_ai/gateway.py +288 -0
- ratel_ai-0.1.6/ratel_ai/mcp.py +141 -0
- ratel_ai-0.1.6/ratel_ai/py.typed +0 -0
- ratel_ai-0.1.6/src/core/lib/CHANGELOG.md +20 -0
- ratel_ai-0.1.6/src/core/lib/Cargo.toml +21 -0
- ratel_ai-0.1.6/src/core/lib/LICENSE.md +21 -0
- ratel_ai-0.1.6/src/core/lib/README.md +67 -0
- ratel_ai-0.1.6/src/core/lib/examples/search_demo.rs +120 -0
- ratel_ai-0.1.6/src/core/lib/src/indexing.rs +132 -0
- ratel_ai-0.1.6/src/core/lib/src/lib.rs +15 -0
- ratel_ai-0.1.6/src/core/lib/src/registry.rs +112 -0
- ratel_ai-0.1.6/src/core/lib/src/tool.rs +7 -0
- ratel_ai-0.1.6/src/core/lib/src/trace/event.rs +117 -0
- ratel_ai-0.1.6/src/core/lib/src/trace/mod.rs +10 -0
- ratel_ai-0.1.6/src/core/lib/src/trace/sink.rs +121 -0
- ratel_ai-0.1.6/src/core/lib/tests/tool_search.rs +367 -0
- ratel_ai-0.1.6/src/core/lib/tests/trace.rs +304 -0
- ratel_ai-0.1.6/src/sdk/python/native/Cargo.toml +29 -0
- ratel_ai-0.1.6/src/sdk/python/native/LICENSE.md +21 -0
- ratel_ai-0.1.6/src/sdk/python/native/README.md +23 -0
- ratel_ai-0.1.6/src/sdk/python/native/src/lib.rs +168 -0
|
@@ -0,0 +1,1076 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "allocator-api2"
|
|
19
|
+
version = "0.2.21"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "anyhow"
|
|
25
|
+
version = "1.0.102"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "autocfg"
|
|
31
|
+
version = "1.5.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bitflags"
|
|
37
|
+
version = "2.11.1"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "bm25"
|
|
43
|
+
version = "2.3.2"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "1cbd8ffdfb7b4c2ff038726178a780a94f90525ed0ad264c0afaa75dd8c18a64"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"cached",
|
|
48
|
+
"deunicode",
|
|
49
|
+
"fxhash",
|
|
50
|
+
"rust-stemmers",
|
|
51
|
+
"stop-words",
|
|
52
|
+
"unicode-segmentation",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "bumpalo"
|
|
57
|
+
version = "3.20.2"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "byteorder"
|
|
63
|
+
version = "1.5.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "cached"
|
|
69
|
+
version = "0.56.0"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "801927ee168e17809ab8901d9f01f700cd7d8d6a6527997fee44e4b0327a253c"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"ahash",
|
|
74
|
+
"cached_proc_macro",
|
|
75
|
+
"cached_proc_macro_types",
|
|
76
|
+
"hashbrown 0.15.5",
|
|
77
|
+
"once_cell",
|
|
78
|
+
"thiserror",
|
|
79
|
+
"web-time",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "cached_proc_macro"
|
|
84
|
+
version = "0.25.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "9225bdcf4e4a9a4c08bf16607908eb2fbf746828d5e0b5e019726dbf6571f201"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"darling",
|
|
89
|
+
"proc-macro2",
|
|
90
|
+
"quote",
|
|
91
|
+
"syn",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "cached_proc_macro_types"
|
|
96
|
+
version = "0.1.1"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "cfg-if"
|
|
102
|
+
version = "1.0.4"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "convert_case"
|
|
108
|
+
version = "0.11.0"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
111
|
+
dependencies = [
|
|
112
|
+
"unicode-segmentation",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "ctor"
|
|
117
|
+
version = "0.11.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "darling"
|
|
123
|
+
version = "0.20.11"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"darling_core",
|
|
128
|
+
"darling_macro",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "darling_core"
|
|
133
|
+
version = "0.20.11"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"fnv",
|
|
138
|
+
"ident_case",
|
|
139
|
+
"proc-macro2",
|
|
140
|
+
"quote",
|
|
141
|
+
"strsim",
|
|
142
|
+
"syn",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "darling_macro"
|
|
147
|
+
version = "0.20.11"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"darling_core",
|
|
152
|
+
"quote",
|
|
153
|
+
"syn",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "deunicode"
|
|
158
|
+
version = "1.6.2"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "equivalent"
|
|
164
|
+
version = "1.0.2"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "errno"
|
|
170
|
+
version = "0.3.14"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"libc",
|
|
175
|
+
"windows-sys",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "fastrand"
|
|
180
|
+
version = "2.4.1"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "fnv"
|
|
186
|
+
version = "1.0.7"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "foldhash"
|
|
192
|
+
version = "0.1.5"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "futures"
|
|
198
|
+
version = "0.3.32"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"futures-channel",
|
|
203
|
+
"futures-core",
|
|
204
|
+
"futures-executor",
|
|
205
|
+
"futures-io",
|
|
206
|
+
"futures-sink",
|
|
207
|
+
"futures-task",
|
|
208
|
+
"futures-util",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "futures-channel"
|
|
213
|
+
version = "0.3.32"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"futures-core",
|
|
218
|
+
"futures-sink",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "futures-core"
|
|
223
|
+
version = "0.3.32"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "futures-executor"
|
|
229
|
+
version = "0.3.32"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"futures-core",
|
|
234
|
+
"futures-task",
|
|
235
|
+
"futures-util",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "futures-io"
|
|
240
|
+
version = "0.3.32"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "futures-macro"
|
|
246
|
+
version = "0.3.32"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"proc-macro2",
|
|
251
|
+
"quote",
|
|
252
|
+
"syn",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "futures-sink"
|
|
257
|
+
version = "0.3.32"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "futures-task"
|
|
263
|
+
version = "0.3.32"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "futures-util"
|
|
269
|
+
version = "0.3.32"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"futures-channel",
|
|
274
|
+
"futures-core",
|
|
275
|
+
"futures-io",
|
|
276
|
+
"futures-macro",
|
|
277
|
+
"futures-sink",
|
|
278
|
+
"futures-task",
|
|
279
|
+
"memchr",
|
|
280
|
+
"pin-project-lite",
|
|
281
|
+
"slab",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "fxhash"
|
|
286
|
+
version = "0.2.1"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"byteorder",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "getrandom"
|
|
295
|
+
version = "0.4.2"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"cfg-if",
|
|
300
|
+
"libc",
|
|
301
|
+
"r-efi",
|
|
302
|
+
"wasip2",
|
|
303
|
+
"wasip3",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "hashbrown"
|
|
308
|
+
version = "0.15.5"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"allocator-api2",
|
|
313
|
+
"equivalent",
|
|
314
|
+
"foldhash",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "hashbrown"
|
|
319
|
+
version = "0.17.0"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "heck"
|
|
325
|
+
version = "0.5.0"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "id-arena"
|
|
331
|
+
version = "2.3.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "ident_case"
|
|
337
|
+
version = "1.0.1"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "indexmap"
|
|
343
|
+
version = "2.14.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"equivalent",
|
|
348
|
+
"hashbrown 0.17.0",
|
|
349
|
+
"serde",
|
|
350
|
+
"serde_core",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "indoc"
|
|
355
|
+
version = "2.0.7"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"rustversion",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "itoa"
|
|
364
|
+
version = "1.0.18"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "js-sys"
|
|
370
|
+
version = "0.3.97"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"cfg-if",
|
|
375
|
+
"futures-util",
|
|
376
|
+
"once_cell",
|
|
377
|
+
"wasm-bindgen",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "leb128fmt"
|
|
382
|
+
version = "0.1.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "libc"
|
|
388
|
+
version = "0.2.186"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "libloading"
|
|
394
|
+
version = "0.9.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"cfg-if",
|
|
399
|
+
"windows-link",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "linux-raw-sys"
|
|
404
|
+
version = "0.12.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "log"
|
|
410
|
+
version = "0.4.29"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "memchr"
|
|
416
|
+
version = "2.8.0"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "memoffset"
|
|
422
|
+
version = "0.9.1"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"autocfg",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "napi"
|
|
431
|
+
version = "3.8.6"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"bitflags",
|
|
436
|
+
"ctor",
|
|
437
|
+
"futures",
|
|
438
|
+
"napi-build",
|
|
439
|
+
"napi-sys",
|
|
440
|
+
"nohash-hasher",
|
|
441
|
+
"rustc-hash",
|
|
442
|
+
"serde",
|
|
443
|
+
"serde_json",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "napi-build"
|
|
448
|
+
version = "2.3.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "napi-derive"
|
|
454
|
+
version = "3.5.5"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "a4ba740fe4c9524d86fd90798fd8ccdb23402b3eef7e7c30897a8a369b529fcf"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"convert_case",
|
|
459
|
+
"ctor",
|
|
460
|
+
"napi-derive-backend",
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"quote",
|
|
463
|
+
"syn",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "napi-derive-backend"
|
|
468
|
+
version = "5.0.4"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"convert_case",
|
|
473
|
+
"proc-macro2",
|
|
474
|
+
"quote",
|
|
475
|
+
"semver",
|
|
476
|
+
"syn",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "napi-sys"
|
|
481
|
+
version = "3.2.1"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"libloading",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "nohash-hasher"
|
|
490
|
+
version = "0.2.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "once_cell"
|
|
496
|
+
version = "1.21.4"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "pin-project-lite"
|
|
502
|
+
version = "0.2.17"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "portable-atomic"
|
|
508
|
+
version = "1.13.1"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "prettyplease"
|
|
514
|
+
version = "0.2.37"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"proc-macro2",
|
|
519
|
+
"syn",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "proc-macro2"
|
|
524
|
+
version = "1.0.106"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"unicode-ident",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "pyo3"
|
|
533
|
+
version = "0.23.5"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"cfg-if",
|
|
538
|
+
"indoc",
|
|
539
|
+
"libc",
|
|
540
|
+
"memoffset",
|
|
541
|
+
"once_cell",
|
|
542
|
+
"portable-atomic",
|
|
543
|
+
"pyo3-build-config",
|
|
544
|
+
"pyo3-ffi",
|
|
545
|
+
"pyo3-macros",
|
|
546
|
+
"unindent",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "pyo3-build-config"
|
|
551
|
+
version = "0.23.5"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"once_cell",
|
|
556
|
+
"target-lexicon",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "pyo3-ffi"
|
|
561
|
+
version = "0.23.5"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"libc",
|
|
566
|
+
"pyo3-build-config",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "pyo3-macros"
|
|
571
|
+
version = "0.23.5"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"proc-macro2",
|
|
576
|
+
"pyo3-macros-backend",
|
|
577
|
+
"quote",
|
|
578
|
+
"syn",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "pyo3-macros-backend"
|
|
583
|
+
version = "0.23.5"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"heck",
|
|
588
|
+
"proc-macro2",
|
|
589
|
+
"pyo3-build-config",
|
|
590
|
+
"quote",
|
|
591
|
+
"syn",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "pythonize"
|
|
596
|
+
version = "0.23.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "91a6ee7a084f913f98d70cdc3ebec07e852b735ae3059a1500db2661265da9ff"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"pyo3",
|
|
601
|
+
"serde",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "quote"
|
|
606
|
+
version = "1.0.45"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"proc-macro2",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "r-efi"
|
|
615
|
+
version = "6.0.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "ratel-ai-core"
|
|
621
|
+
version = "0.1.6"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"bm25",
|
|
624
|
+
"serde",
|
|
625
|
+
"serde_json",
|
|
626
|
+
"tempfile",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "ratel-sdk-python-native"
|
|
631
|
+
version = "0.1.6"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"pyo3",
|
|
634
|
+
"pythonize",
|
|
635
|
+
"ratel-ai-core",
|
|
636
|
+
"serde_json",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "ratel-sdk-ts-native"
|
|
641
|
+
version = "0.1.6"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"napi",
|
|
644
|
+
"napi-build",
|
|
645
|
+
"napi-derive",
|
|
646
|
+
"ratel-ai-core",
|
|
647
|
+
"serde_json",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "rust-stemmers"
|
|
652
|
+
version = "1.2.0"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"serde",
|
|
657
|
+
"serde_derive",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "rustc-hash"
|
|
662
|
+
version = "2.1.2"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "rustix"
|
|
668
|
+
version = "1.1.4"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"bitflags",
|
|
673
|
+
"errno",
|
|
674
|
+
"libc",
|
|
675
|
+
"linux-raw-sys",
|
|
676
|
+
"windows-sys",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "rustversion"
|
|
681
|
+
version = "1.0.22"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "semver"
|
|
687
|
+
version = "1.0.28"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "serde"
|
|
693
|
+
version = "1.0.228"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"serde_core",
|
|
698
|
+
"serde_derive",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "serde_core"
|
|
703
|
+
version = "1.0.228"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"serde_derive",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "serde_derive"
|
|
712
|
+
version = "1.0.228"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"proc-macro2",
|
|
717
|
+
"quote",
|
|
718
|
+
"syn",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "serde_json"
|
|
723
|
+
version = "1.0.149"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"indexmap",
|
|
728
|
+
"itoa",
|
|
729
|
+
"memchr",
|
|
730
|
+
"serde",
|
|
731
|
+
"serde_core",
|
|
732
|
+
"zmij",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "slab"
|
|
737
|
+
version = "0.4.12"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "stop-words"
|
|
743
|
+
version = "0.9.0"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "645a3d441ccf4bf47f2e4b7681461986681a6eeea9937d4c3bc9febd61d17c71"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"serde_json",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "strsim"
|
|
752
|
+
version = "0.11.1"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "syn"
|
|
758
|
+
version = "2.0.117"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"proc-macro2",
|
|
763
|
+
"quote",
|
|
764
|
+
"unicode-ident",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "target-lexicon"
|
|
769
|
+
version = "0.12.16"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "tempfile"
|
|
775
|
+
version = "3.27.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"fastrand",
|
|
780
|
+
"getrandom",
|
|
781
|
+
"once_cell",
|
|
782
|
+
"rustix",
|
|
783
|
+
"windows-sys",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "thiserror"
|
|
788
|
+
version = "2.0.18"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"thiserror-impl",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "thiserror-impl"
|
|
797
|
+
version = "2.0.18"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"proc-macro2",
|
|
802
|
+
"quote",
|
|
803
|
+
"syn",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "unicode-ident"
|
|
808
|
+
version = "1.0.24"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "unicode-segmentation"
|
|
814
|
+
version = "1.13.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "unicode-xid"
|
|
820
|
+
version = "0.2.6"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "unindent"
|
|
826
|
+
version = "0.2.4"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "version_check"
|
|
832
|
+
version = "0.9.5"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "wasip2"
|
|
838
|
+
version = "1.0.3+wasi-0.2.9"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"wit-bindgen 0.57.1",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "wasip3"
|
|
847
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"wit-bindgen 0.51.0",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "wasm-bindgen"
|
|
856
|
+
version = "0.2.120"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"cfg-if",
|
|
861
|
+
"once_cell",
|
|
862
|
+
"rustversion",
|
|
863
|
+
"wasm-bindgen-macro",
|
|
864
|
+
"wasm-bindgen-shared",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "wasm-bindgen-macro"
|
|
869
|
+
version = "0.2.120"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"quote",
|
|
874
|
+
"wasm-bindgen-macro-support",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "wasm-bindgen-macro-support"
|
|
879
|
+
version = "0.2.120"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"bumpalo",
|
|
884
|
+
"proc-macro2",
|
|
885
|
+
"quote",
|
|
886
|
+
"syn",
|
|
887
|
+
"wasm-bindgen-shared",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "wasm-bindgen-shared"
|
|
892
|
+
version = "0.2.120"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"unicode-ident",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "wasm-encoder"
|
|
901
|
+
version = "0.244.0"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"leb128fmt",
|
|
906
|
+
"wasmparser",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "wasm-metadata"
|
|
911
|
+
version = "0.244.0"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"anyhow",
|
|
916
|
+
"indexmap",
|
|
917
|
+
"wasm-encoder",
|
|
918
|
+
"wasmparser",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "wasmparser"
|
|
923
|
+
version = "0.244.0"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"bitflags",
|
|
928
|
+
"hashbrown 0.15.5",
|
|
929
|
+
"indexmap",
|
|
930
|
+
"semver",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "web-time"
|
|
935
|
+
version = "1.1.0"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"js-sys",
|
|
940
|
+
"wasm-bindgen",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "windows-link"
|
|
945
|
+
version = "0.2.1"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "windows-sys"
|
|
951
|
+
version = "0.61.2"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"windows-link",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "wit-bindgen"
|
|
960
|
+
version = "0.51.0"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"wit-bindgen-rust-macro",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "wit-bindgen"
|
|
969
|
+
version = "0.57.1"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "wit-bindgen-core"
|
|
975
|
+
version = "0.51.0"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"anyhow",
|
|
980
|
+
"heck",
|
|
981
|
+
"wit-parser",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "wit-bindgen-rust"
|
|
986
|
+
version = "0.51.0"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"anyhow",
|
|
991
|
+
"heck",
|
|
992
|
+
"indexmap",
|
|
993
|
+
"prettyplease",
|
|
994
|
+
"syn",
|
|
995
|
+
"wasm-metadata",
|
|
996
|
+
"wit-bindgen-core",
|
|
997
|
+
"wit-component",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "wit-bindgen-rust-macro"
|
|
1002
|
+
version = "0.51.0"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"anyhow",
|
|
1007
|
+
"prettyplease",
|
|
1008
|
+
"proc-macro2",
|
|
1009
|
+
"quote",
|
|
1010
|
+
"syn",
|
|
1011
|
+
"wit-bindgen-core",
|
|
1012
|
+
"wit-bindgen-rust",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "wit-component"
|
|
1017
|
+
version = "0.244.0"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"anyhow",
|
|
1022
|
+
"bitflags",
|
|
1023
|
+
"indexmap",
|
|
1024
|
+
"log",
|
|
1025
|
+
"serde",
|
|
1026
|
+
"serde_derive",
|
|
1027
|
+
"serde_json",
|
|
1028
|
+
"wasm-encoder",
|
|
1029
|
+
"wasm-metadata",
|
|
1030
|
+
"wasmparser",
|
|
1031
|
+
"wit-parser",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "wit-parser"
|
|
1036
|
+
version = "0.244.0"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"anyhow",
|
|
1041
|
+
"id-arena",
|
|
1042
|
+
"indexmap",
|
|
1043
|
+
"log",
|
|
1044
|
+
"semver",
|
|
1045
|
+
"serde",
|
|
1046
|
+
"serde_derive",
|
|
1047
|
+
"serde_json",
|
|
1048
|
+
"unicode-xid",
|
|
1049
|
+
"wasmparser",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "zerocopy"
|
|
1054
|
+
version = "0.8.48"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"zerocopy-derive",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "zerocopy-derive"
|
|
1063
|
+
version = "0.8.48"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"proc-macro2",
|
|
1068
|
+
"quote",
|
|
1069
|
+
"syn",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "zmij"
|
|
1074
|
+
version = "1.0.21"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|