kapsl-sdk 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.
- kapsl_sdk-0.1.0/Cargo.lock +4685 -0
- kapsl_sdk-0.1.0/Cargo.toml +7 -0
- kapsl_sdk-0.1.0/PKG-INFO +43 -0
- kapsl_sdk-0.1.0/README.md +22 -0
- kapsl_sdk-0.1.0/crates/kapsl-engine-api/Cargo.toml +14 -0
- kapsl_sdk-0.1.0/crates/kapsl-engine-api/src/lib.rs +769 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/Cargo.toml +17 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/examples/device_mesh_example.rs +185 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/device.rs +798 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/device_mesh.rs +576 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/device_mest_tests.rs +125 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/device_tests.rs +108 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/distributed_ops.rs +308 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/kernel.rs +69 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/kernel_tests.rs +23 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/lib.rs +17 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/mock_comm.rs +356 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/nccl_comm.rs +348 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/tensor.rs +41 -0
- kapsl_sdk-0.1.0/crates/kapsl-hal/src/tensor_tests.rs +36 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/Cargo.toml +17 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/examples/benchmark_inference.rs +406 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/examples/deepseek_client.rs +244 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/examples/simple_client.rs +176 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/src/client.rs +135 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/src/lib.rs +8 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/src/protocol.rs +42 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/src/server.rs +627 -0
- kapsl_sdk-0.1.0/crates/kapsl-ipc/src/tcp_server.rs +79 -0
- kapsl_sdk-0.1.0/crates/kapsl-pyo3/Cargo.toml +21 -0
- kapsl_sdk-0.1.0/crates/kapsl-pyo3/README.md +22 -0
- kapsl_sdk-0.1.0/crates/kapsl-pyo3/src/hybrid_client.rs +238 -0
- kapsl_sdk-0.1.0/crates/kapsl-pyo3/src/lib.rs +618 -0
- kapsl_sdk-0.1.0/crates/kapsl-pyo3/src/shm_client.rs +299 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/Cargo.toml +13 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/gpu_executor.rs +329 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/gpu_executor_tests.rs +0 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/lib.rs +160 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/mesh_routing.rs +322 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/priority.rs +5 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/replica_pool.rs +724 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/replica_pool_tests.rs +0 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/request.rs +7 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/request_metadata.rs +106 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/request_metadata_tests.rs +93 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/scheduler.rs +373 -0
- kapsl_sdk-0.1.0/crates/kapsl-scheduler/src/scheduler_tests.rs +195 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/Cargo.toml +22 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/allocator.rs +439 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/allocator_tests.rs +170 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/lib.rs +9 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/memory.rs +273 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/memory_tests.rs +29 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/ring_buffer.rs +276 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/ring_buffer_tests.rs +169 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/server.rs +628 -0
- kapsl_sdk-0.1.0/crates/kapsl-shm/src/server_tests.rs +347 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/Cargo.toml +16 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/src/connection_pool.rs +223 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/src/connection_pool_tests.rs +71 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/src/lib.rs +164 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/src/tcp.rs +129 -0
- kapsl_sdk-0.1.0/crates/kapsl-transport/src/tcp_tests.rs +0 -0
- kapsl_sdk-0.1.0/kapsl_sdk/__init__.py +3 -0
- kapsl_sdk-0.1.0/pyproject.toml +33 -0
|
@@ -0,0 +1,4685 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.21.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.8.12"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"once_cell",
|
|
28
|
+
"version_check",
|
|
29
|
+
"zerocopy",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aho-corasick"
|
|
34
|
+
version = "1.1.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"memchr",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "allocator-api2"
|
|
43
|
+
version = "0.2.21"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "ambient-authority"
|
|
49
|
+
version = "0.0.2"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "android_system_properties"
|
|
55
|
+
version = "0.1.5"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"libc",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anyhow"
|
|
64
|
+
version = "1.0.102"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "ar_archive_writer"
|
|
70
|
+
version = "0.5.1"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"object 0.37.3",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "arbitrary"
|
|
79
|
+
version = "1.4.2"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "async-stream"
|
|
85
|
+
version = "0.3.6"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"async-stream-impl",
|
|
90
|
+
"futures-core",
|
|
91
|
+
"pin-project-lite",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "async-stream-impl"
|
|
96
|
+
version = "0.3.6"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"proc-macro2",
|
|
101
|
+
"quote",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "async-trait"
|
|
107
|
+
version = "0.1.89"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"proc-macro2",
|
|
112
|
+
"quote",
|
|
113
|
+
"syn",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "autocfg"
|
|
118
|
+
version = "1.5.0"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "base64"
|
|
124
|
+
version = "0.13.1"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "base64"
|
|
130
|
+
version = "0.21.7"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "base64"
|
|
136
|
+
version = "0.22.1"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "base64ct"
|
|
142
|
+
version = "1.8.3"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "bincode"
|
|
148
|
+
version = "1.3.3"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"serde",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "bindgen"
|
|
157
|
+
version = "0.72.1"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"bitflags 2.11.0",
|
|
162
|
+
"cexpr",
|
|
163
|
+
"clang-sys",
|
|
164
|
+
"itertools 0.13.0",
|
|
165
|
+
"log",
|
|
166
|
+
"prettyplease",
|
|
167
|
+
"proc-macro2",
|
|
168
|
+
"quote",
|
|
169
|
+
"regex",
|
|
170
|
+
"rustc-hash 2.1.1",
|
|
171
|
+
"shlex",
|
|
172
|
+
"syn",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "bitflags"
|
|
177
|
+
version = "1.3.2"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "bitflags"
|
|
183
|
+
version = "2.11.0"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "block-buffer"
|
|
189
|
+
version = "0.10.4"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"generic-array",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "bumpalo"
|
|
198
|
+
version = "3.20.2"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "byteorder"
|
|
204
|
+
version = "1.5.0"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "bytes"
|
|
210
|
+
version = "1.11.1"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "cap-fs-ext"
|
|
216
|
+
version = "2.0.2"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "16e2fd9e6c6c0777d8f9f3eea6a2f5f9af2f1ba1fc6ce850ef3e2ee9c802d230"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"cap-primitives",
|
|
221
|
+
"cap-std",
|
|
222
|
+
"io-lifetimes",
|
|
223
|
+
"windows-sys 0.52.0",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "cap-net-ext"
|
|
228
|
+
version = "2.0.2"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "11c16c22d3d7fa26550c19a4fcc17aa372c210bc2b3fde12eb592485c46b7475"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"cap-primitives",
|
|
233
|
+
"cap-std",
|
|
234
|
+
"rustix 0.38.44",
|
|
235
|
+
"smallvec",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "cap-primitives"
|
|
240
|
+
version = "2.0.2"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "6bfd51e9768cfbd52a219b2c173aac03d073a57f43e8fecb8693a144fe960e24"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"ambient-authority",
|
|
245
|
+
"fs-set-times",
|
|
246
|
+
"io-extras",
|
|
247
|
+
"io-lifetimes",
|
|
248
|
+
"ipnet",
|
|
249
|
+
"maybe-owned",
|
|
250
|
+
"rustix 0.38.44",
|
|
251
|
+
"windows-sys 0.52.0",
|
|
252
|
+
"winx",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "cap-rand"
|
|
257
|
+
version = "2.0.2"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "8ce977bea95e49cc352bf8253719d872d27486e56f91b5491e20a827ab2c1a16"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"ambient-authority",
|
|
262
|
+
"rand",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "cap-std"
|
|
267
|
+
version = "2.0.2"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "03bce72d0a6856cd9079c9a4e3bba64ac40f5216bd49bc5fa8565fbe0ca6ad47"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"cap-primitives",
|
|
272
|
+
"io-extras",
|
|
273
|
+
"io-lifetimes",
|
|
274
|
+
"rustix 0.38.44",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "cap-time-ext"
|
|
279
|
+
version = "2.0.2"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "0cf94bd0ddce5f53c5b6e132cacdf43fa3386df2b45ffb9808e913dca02afe9d"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"ambient-authority",
|
|
284
|
+
"cap-primitives",
|
|
285
|
+
"iana-time-zone",
|
|
286
|
+
"once_cell",
|
|
287
|
+
"rustix 0.38.44",
|
|
288
|
+
"winx",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "cc"
|
|
293
|
+
version = "1.2.56"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"find-msvc-tools",
|
|
298
|
+
"jobserver",
|
|
299
|
+
"libc",
|
|
300
|
+
"shlex",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "cexpr"
|
|
305
|
+
version = "0.6.0"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"nom",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "cfg-if"
|
|
314
|
+
version = "1.0.4"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "clang-sys"
|
|
320
|
+
version = "1.8.1"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"glob",
|
|
325
|
+
"libc",
|
|
326
|
+
"libloading",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "cmake"
|
|
331
|
+
version = "0.1.57"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"cc",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "console"
|
|
340
|
+
version = "0.15.11"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"encode_unicode",
|
|
345
|
+
"libc",
|
|
346
|
+
"once_cell",
|
|
347
|
+
"unicode-width",
|
|
348
|
+
"windows-sys 0.59.0",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "core-foundation"
|
|
353
|
+
version = "0.10.1"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"core-foundation-sys",
|
|
358
|
+
"libc",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "core-foundation-sys"
|
|
363
|
+
version = "0.8.7"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "cpp_demangle"
|
|
369
|
+
version = "0.3.5"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"cfg-if",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "cpufeatures"
|
|
378
|
+
version = "0.2.17"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"libc",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "cranelift-bforest"
|
|
387
|
+
version = "0.103.0"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "7c22542c0b95bd3302f7ed6839869c561f2324bac2fd5e7e99f5cfa65fdc8b92"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"cranelift-entity",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "cranelift-codegen"
|
|
396
|
+
version = "0.103.0"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "6b3db903ef2e9c8a4de2ea6db5db052c7857282952f9df604aa55d169e6000d8"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"bumpalo",
|
|
401
|
+
"cranelift-bforest",
|
|
402
|
+
"cranelift-codegen-meta",
|
|
403
|
+
"cranelift-codegen-shared",
|
|
404
|
+
"cranelift-control",
|
|
405
|
+
"cranelift-entity",
|
|
406
|
+
"cranelift-isle",
|
|
407
|
+
"gimli",
|
|
408
|
+
"hashbrown 0.14.5",
|
|
409
|
+
"log",
|
|
410
|
+
"regalloc2",
|
|
411
|
+
"smallvec",
|
|
412
|
+
"target-lexicon",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "cranelift-codegen-meta"
|
|
417
|
+
version = "0.103.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "6590feb5a1d6438f974bf6a5ac4dddf69fca14e1f07f3265d880f69e61a94463"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"cranelift-codegen-shared",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "cranelift-codegen-shared"
|
|
426
|
+
version = "0.103.0"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "7239038c56fafe77fddc8788fc8533dd6c474dc5bdc5637216404f41ba807330"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "cranelift-control"
|
|
432
|
+
version = "0.103.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "f7dc9c595341404d381d27a3d950160856b35b402275f0c3990cd1ad683c8053"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"arbitrary",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "cranelift-entity"
|
|
441
|
+
version = "0.103.0"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "44e3ee532fc4776c69bcedf7e62f9632cbb3f35776fa9a525cdade3195baa3f7"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"serde",
|
|
446
|
+
"serde_derive",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "cranelift-frontend"
|
|
451
|
+
version = "0.103.0"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "a612c94d09e653662ec37681dc2d6fd2b9856e6df7147be0afc9aabb0abf19df"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"cranelift-codegen",
|
|
456
|
+
"log",
|
|
457
|
+
"smallvec",
|
|
458
|
+
"target-lexicon",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "cranelift-isle"
|
|
463
|
+
version = "0.103.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "85db9830abeb1170b7d29b536ffd55af1d4d26ac8a77570b5d1aca003bf225cc"
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "cranelift-native"
|
|
469
|
+
version = "0.103.0"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "301ef0edafeaeda5771a5d2db64ac53e1818ae3111220a185677025fe91db4a1"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"cranelift-codegen",
|
|
474
|
+
"libc",
|
|
475
|
+
"target-lexicon",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "cranelift-wasm"
|
|
480
|
+
version = "0.103.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "380f0abe8264e4570ac615fc31cef32a3b90a77f7eb97b08331f9dd357b1f500"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"cranelift-codegen",
|
|
485
|
+
"cranelift-entity",
|
|
486
|
+
"cranelift-frontend",
|
|
487
|
+
"itertools 0.10.5",
|
|
488
|
+
"log",
|
|
489
|
+
"smallvec",
|
|
490
|
+
"wasmparser 0.118.2",
|
|
491
|
+
"wasmtime-types",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "crc32fast"
|
|
496
|
+
version = "1.5.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"cfg-if",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "crossbeam"
|
|
505
|
+
version = "0.8.4"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"crossbeam-channel",
|
|
510
|
+
"crossbeam-deque",
|
|
511
|
+
"crossbeam-epoch",
|
|
512
|
+
"crossbeam-queue",
|
|
513
|
+
"crossbeam-utils",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "crossbeam-channel"
|
|
518
|
+
version = "0.5.15"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"crossbeam-utils",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "crossbeam-deque"
|
|
527
|
+
version = "0.8.6"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"crossbeam-epoch",
|
|
532
|
+
"crossbeam-utils",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "crossbeam-epoch"
|
|
537
|
+
version = "0.9.18"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"crossbeam-utils",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "crossbeam-queue"
|
|
546
|
+
version = "0.3.12"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"crossbeam-utils",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "crossbeam-utils"
|
|
555
|
+
version = "0.8.21"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "crunchy"
|
|
561
|
+
version = "0.2.4"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "crypto-common"
|
|
567
|
+
version = "0.1.7"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"generic-array",
|
|
572
|
+
"typenum",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "cudarc"
|
|
577
|
+
version = "0.12.1"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"libloading",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "darling"
|
|
586
|
+
version = "0.20.11"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"darling_core",
|
|
591
|
+
"darling_macro",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "darling_core"
|
|
596
|
+
version = "0.20.11"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"fnv",
|
|
601
|
+
"ident_case",
|
|
602
|
+
"proc-macro2",
|
|
603
|
+
"quote",
|
|
604
|
+
"strsim",
|
|
605
|
+
"syn",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "darling_macro"
|
|
610
|
+
version = "0.20.11"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"darling_core",
|
|
615
|
+
"quote",
|
|
616
|
+
"syn",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "debugid"
|
|
621
|
+
version = "0.8.0"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"uuid",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "der"
|
|
630
|
+
version = "0.7.10"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"pem-rfc7468",
|
|
635
|
+
"zeroize",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "derive_builder"
|
|
640
|
+
version = "0.20.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"derive_builder_macro",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "derive_builder_core"
|
|
649
|
+
version = "0.20.2"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"darling",
|
|
654
|
+
"proc-macro2",
|
|
655
|
+
"quote",
|
|
656
|
+
"syn",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "derive_builder_macro"
|
|
661
|
+
version = "0.20.2"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"derive_builder_core",
|
|
666
|
+
"syn",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "digest"
|
|
671
|
+
version = "0.10.7"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"block-buffer",
|
|
676
|
+
"crypto-common",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "directories-next"
|
|
681
|
+
version = "2.0.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"cfg-if",
|
|
686
|
+
"dirs-sys-next",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "dirs"
|
|
691
|
+
version = "4.0.0"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"dirs-sys",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "dirs-sys"
|
|
700
|
+
version = "0.3.7"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"libc",
|
|
705
|
+
"redox_users",
|
|
706
|
+
"winapi",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "dirs-sys-next"
|
|
711
|
+
version = "0.1.2"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"libc",
|
|
716
|
+
"redox_users",
|
|
717
|
+
"winapi",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "displaydoc"
|
|
722
|
+
version = "0.2.5"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"proc-macro2",
|
|
727
|
+
"quote",
|
|
728
|
+
"syn",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "either"
|
|
733
|
+
version = "1.15.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "encode_unicode"
|
|
739
|
+
version = "1.0.0"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "encoding_rs"
|
|
745
|
+
version = "0.8.35"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"cfg-if",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "enumflags2"
|
|
754
|
+
version = "0.7.12"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"enumflags2_derive",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "enumflags2_derive"
|
|
763
|
+
version = "0.7.12"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"proc-macro2",
|
|
768
|
+
"quote",
|
|
769
|
+
"syn",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "env_logger"
|
|
774
|
+
version = "0.10.2"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"humantime",
|
|
779
|
+
"is-terminal",
|
|
780
|
+
"log",
|
|
781
|
+
"regex",
|
|
782
|
+
"termcolor",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "equivalent"
|
|
787
|
+
version = "1.0.2"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "errno"
|
|
793
|
+
version = "0.3.14"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"libc",
|
|
798
|
+
"windows-sys 0.61.2",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "esaxx-rs"
|
|
803
|
+
version = "0.1.10"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"cc",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "fallible-iterator"
|
|
810
|
+
version = "0.3.0"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "fallible-streaming-iterator"
|
|
816
|
+
version = "0.1.9"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "fastrand"
|
|
822
|
+
version = "2.3.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "fd-lock"
|
|
828
|
+
version = "4.0.4"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"cfg-if",
|
|
833
|
+
"rustix 1.1.4",
|
|
834
|
+
"windows-sys 0.59.0",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "filetime"
|
|
839
|
+
version = "0.2.27"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"cfg-if",
|
|
844
|
+
"libc",
|
|
845
|
+
"libredox",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "find-msvc-tools"
|
|
850
|
+
version = "0.1.9"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "find_cuda_helper"
|
|
856
|
+
version = "0.2.0"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "f9f9e65c593dd01ac77daad909ea4ad17f0d6d1776193fc8ea766356177abdad"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"glob",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "flate2"
|
|
865
|
+
version = "1.1.9"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"crc32fast",
|
|
870
|
+
"miniz_oxide",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "fnv"
|
|
875
|
+
version = "1.0.7"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "foldhash"
|
|
881
|
+
version = "0.1.5"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "foreign-types"
|
|
887
|
+
version = "0.3.2"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"foreign-types-shared",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "foreign-types-shared"
|
|
896
|
+
version = "0.1.1"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "form_urlencoded"
|
|
902
|
+
version = "1.2.2"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"percent-encoding",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "fs-set-times"
|
|
911
|
+
version = "0.20.3"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"io-lifetimes",
|
|
916
|
+
"rustix 1.1.4",
|
|
917
|
+
"windows-sys 0.59.0",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "fs2"
|
|
922
|
+
version = "0.4.3"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"libc",
|
|
927
|
+
"winapi",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "futures"
|
|
932
|
+
version = "0.3.32"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"futures-channel",
|
|
937
|
+
"futures-core",
|
|
938
|
+
"futures-executor",
|
|
939
|
+
"futures-io",
|
|
940
|
+
"futures-sink",
|
|
941
|
+
"futures-task",
|
|
942
|
+
"futures-util",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "futures-channel"
|
|
947
|
+
version = "0.3.32"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"futures-core",
|
|
952
|
+
"futures-sink",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "futures-core"
|
|
957
|
+
version = "0.3.32"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "futures-executor"
|
|
963
|
+
version = "0.3.32"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"futures-core",
|
|
968
|
+
"futures-task",
|
|
969
|
+
"futures-util",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "futures-io"
|
|
974
|
+
version = "0.3.32"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "futures-macro"
|
|
980
|
+
version = "0.3.32"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"proc-macro2",
|
|
985
|
+
"quote",
|
|
986
|
+
"syn",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "futures-sink"
|
|
991
|
+
version = "0.3.32"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "futures-task"
|
|
997
|
+
version = "0.3.32"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "futures-util"
|
|
1003
|
+
version = "0.3.32"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"futures-channel",
|
|
1008
|
+
"futures-core",
|
|
1009
|
+
"futures-io",
|
|
1010
|
+
"futures-macro",
|
|
1011
|
+
"futures-sink",
|
|
1012
|
+
"futures-task",
|
|
1013
|
+
"memchr",
|
|
1014
|
+
"pin-project-lite",
|
|
1015
|
+
"slab",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "fxhash"
|
|
1020
|
+
version = "0.2.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"byteorder",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "fxprof-processed-profile"
|
|
1029
|
+
version = "0.6.0"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"bitflags 2.11.0",
|
|
1034
|
+
"debugid",
|
|
1035
|
+
"fxhash",
|
|
1036
|
+
"serde",
|
|
1037
|
+
"serde_json",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "generic-array"
|
|
1042
|
+
version = "0.14.7"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"typenum",
|
|
1047
|
+
"version_check",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "getrandom"
|
|
1052
|
+
version = "0.2.17"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"cfg-if",
|
|
1057
|
+
"libc",
|
|
1058
|
+
"wasi",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "getrandom"
|
|
1063
|
+
version = "0.3.4"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"cfg-if",
|
|
1068
|
+
"libc",
|
|
1069
|
+
"r-efi 5.3.0",
|
|
1070
|
+
"wasip2",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "getrandom"
|
|
1075
|
+
version = "0.4.2"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"cfg-if",
|
|
1080
|
+
"libc",
|
|
1081
|
+
"r-efi 6.0.0",
|
|
1082
|
+
"wasip2",
|
|
1083
|
+
"wasip3",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "gimli"
|
|
1088
|
+
version = "0.28.1"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"fallible-iterator",
|
|
1093
|
+
"indexmap",
|
|
1094
|
+
"stable_deref_trait",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "glob"
|
|
1099
|
+
version = "0.3.3"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "half"
|
|
1105
|
+
version = "2.7.1"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"cfg-if",
|
|
1110
|
+
"crunchy",
|
|
1111
|
+
"serde",
|
|
1112
|
+
"zerocopy",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "hashbrown"
|
|
1117
|
+
version = "0.13.2"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"ahash",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "hashbrown"
|
|
1126
|
+
version = "0.14.5"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"ahash",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "hashbrown"
|
|
1135
|
+
version = "0.15.5"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"allocator-api2",
|
|
1140
|
+
"equivalent",
|
|
1141
|
+
"foldhash",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "hashbrown"
|
|
1146
|
+
version = "0.16.1"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "hashlink"
|
|
1152
|
+
version = "0.9.1"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"hashbrown 0.14.5",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "heck"
|
|
1161
|
+
version = "0.4.1"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "heck"
|
|
1167
|
+
version = "0.5.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "hermit-abi"
|
|
1173
|
+
version = "0.5.2"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "hex"
|
|
1179
|
+
version = "0.4.3"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "hmac-sha256"
|
|
1185
|
+
version = "1.1.14"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "http"
|
|
1191
|
+
version = "1.4.0"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"bytes",
|
|
1196
|
+
"itoa",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "httparse"
|
|
1201
|
+
version = "1.10.1"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "humantime"
|
|
1207
|
+
version = "2.3.0"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "iana-time-zone"
|
|
1213
|
+
version = "0.1.65"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"android_system_properties",
|
|
1218
|
+
"core-foundation-sys",
|
|
1219
|
+
"iana-time-zone-haiku",
|
|
1220
|
+
"js-sys",
|
|
1221
|
+
"log",
|
|
1222
|
+
"wasm-bindgen",
|
|
1223
|
+
"windows-core",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "iana-time-zone-haiku"
|
|
1228
|
+
version = "0.1.2"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"cc",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "icu_collections"
|
|
1237
|
+
version = "2.1.1"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"displaydoc",
|
|
1242
|
+
"potential_utf",
|
|
1243
|
+
"yoke",
|
|
1244
|
+
"zerofrom",
|
|
1245
|
+
"zerovec",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "icu_locale_core"
|
|
1250
|
+
version = "2.1.1"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"displaydoc",
|
|
1255
|
+
"litemap",
|
|
1256
|
+
"tinystr",
|
|
1257
|
+
"writeable",
|
|
1258
|
+
"zerovec",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "icu_normalizer"
|
|
1263
|
+
version = "2.1.1"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"icu_collections",
|
|
1268
|
+
"icu_normalizer_data",
|
|
1269
|
+
"icu_properties",
|
|
1270
|
+
"icu_provider",
|
|
1271
|
+
"smallvec",
|
|
1272
|
+
"zerovec",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "icu_normalizer_data"
|
|
1277
|
+
version = "2.1.1"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "icu_properties"
|
|
1283
|
+
version = "2.1.2"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"icu_collections",
|
|
1288
|
+
"icu_locale_core",
|
|
1289
|
+
"icu_properties_data",
|
|
1290
|
+
"icu_provider",
|
|
1291
|
+
"zerotrie",
|
|
1292
|
+
"zerovec",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "icu_properties_data"
|
|
1297
|
+
version = "2.1.2"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "icu_provider"
|
|
1303
|
+
version = "2.1.1"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"displaydoc",
|
|
1308
|
+
"icu_locale_core",
|
|
1309
|
+
"writeable",
|
|
1310
|
+
"yoke",
|
|
1311
|
+
"zerofrom",
|
|
1312
|
+
"zerotrie",
|
|
1313
|
+
"zerovec",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "id-arena"
|
|
1318
|
+
version = "2.3.0"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "ident_case"
|
|
1324
|
+
version = "1.0.1"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "idna"
|
|
1330
|
+
version = "1.1.0"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"idna_adapter",
|
|
1335
|
+
"smallvec",
|
|
1336
|
+
"utf8_iter",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "idna_adapter"
|
|
1341
|
+
version = "1.2.1"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"icu_normalizer",
|
|
1346
|
+
"icu_properties",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "indexmap"
|
|
1351
|
+
version = "2.13.0"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"equivalent",
|
|
1356
|
+
"hashbrown 0.16.1",
|
|
1357
|
+
"serde",
|
|
1358
|
+
"serde_core",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "indicatif"
|
|
1363
|
+
version = "0.17.11"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
1366
|
+
dependencies = [
|
|
1367
|
+
"console",
|
|
1368
|
+
"number_prefix",
|
|
1369
|
+
"portable-atomic",
|
|
1370
|
+
"unicode-width",
|
|
1371
|
+
"web-time",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "indoc"
|
|
1376
|
+
version = "2.0.7"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1379
|
+
dependencies = [
|
|
1380
|
+
"rustversion",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "io-extras"
|
|
1385
|
+
version = "0.18.4"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"io-lifetimes",
|
|
1390
|
+
"windows-sys 0.59.0",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "io-lifetimes"
|
|
1395
|
+
version = "2.0.4"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "ipnet"
|
|
1401
|
+
version = "2.12.0"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "is-terminal"
|
|
1407
|
+
version = "0.4.17"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"hermit-abi",
|
|
1412
|
+
"libc",
|
|
1413
|
+
"windows-sys 0.61.2",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "itertools"
|
|
1418
|
+
version = "0.10.5"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"either",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "itertools"
|
|
1427
|
+
version = "0.11.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"either",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "itertools"
|
|
1436
|
+
version = "0.12.1"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"either",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "itertools"
|
|
1445
|
+
version = "0.13.0"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"either",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "itoa"
|
|
1454
|
+
version = "1.0.17"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "ittapi"
|
|
1460
|
+
version = "0.4.0"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"anyhow",
|
|
1465
|
+
"ittapi-sys",
|
|
1466
|
+
"log",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "ittapi-sys"
|
|
1471
|
+
version = "0.4.0"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
|
1474
|
+
dependencies = [
|
|
1475
|
+
"cc",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "jobserver"
|
|
1480
|
+
version = "0.1.34"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"getrandom 0.3.4",
|
|
1485
|
+
"libc",
|
|
1486
|
+
]
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "js-sys"
|
|
1490
|
+
version = "0.3.91"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"once_cell",
|
|
1495
|
+
"wasm-bindgen",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "kapsl-backends"
|
|
1500
|
+
version = "0.1.0"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"async-trait",
|
|
1503
|
+
"futures",
|
|
1504
|
+
"half",
|
|
1505
|
+
"kapsl-core",
|
|
1506
|
+
"kapsl-engine-api",
|
|
1507
|
+
"kapsl-hal",
|
|
1508
|
+
"kapsl-llm",
|
|
1509
|
+
"log",
|
|
1510
|
+
"lru",
|
|
1511
|
+
"ndarray 0.17.2",
|
|
1512
|
+
"ort",
|
|
1513
|
+
"serde",
|
|
1514
|
+
"thiserror 1.0.69",
|
|
1515
|
+
"tokio",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "kapsl-core"
|
|
1520
|
+
version = "0.1.0"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"flate2",
|
|
1523
|
+
"fs2",
|
|
1524
|
+
"hex",
|
|
1525
|
+
"log",
|
|
1526
|
+
"parking_lot",
|
|
1527
|
+
"serde",
|
|
1528
|
+
"serde_json",
|
|
1529
|
+
"serde_yaml",
|
|
1530
|
+
"sha2",
|
|
1531
|
+
"tar",
|
|
1532
|
+
"tempfile",
|
|
1533
|
+
"thiserror 1.0.69",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "kapsl-engine-api"
|
|
1538
|
+
version = "0.1.0"
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
"async-trait",
|
|
1541
|
+
"base64 0.22.1",
|
|
1542
|
+
"futures",
|
|
1543
|
+
"serde",
|
|
1544
|
+
"serde_json",
|
|
1545
|
+
"thiserror 1.0.69",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "kapsl-hal"
|
|
1550
|
+
version = "0.1.0"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"cudarc",
|
|
1553
|
+
"nvml-wrapper",
|
|
1554
|
+
"serde",
|
|
1555
|
+
"serde_json",
|
|
1556
|
+
"sys-info",
|
|
1557
|
+
"thiserror 2.0.18",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "kapsl-ipc"
|
|
1562
|
+
version = "0.1.0"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"async-trait",
|
|
1565
|
+
"bincode",
|
|
1566
|
+
"futures",
|
|
1567
|
+
"kapsl-engine-api",
|
|
1568
|
+
"kapsl-scheduler",
|
|
1569
|
+
"kapsl-shm",
|
|
1570
|
+
"kapsl-transport",
|
|
1571
|
+
"log",
|
|
1572
|
+
"serde",
|
|
1573
|
+
"thiserror 1.0.69",
|
|
1574
|
+
"tokio",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "kapsl-kernels"
|
|
1579
|
+
version = "0.1.0"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"kapsl-hal",
|
|
1582
|
+
"log",
|
|
1583
|
+
"rayon",
|
|
1584
|
+
"thiserror 1.0.69",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "kapsl-llm"
|
|
1589
|
+
version = "0.1.0"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"async-stream",
|
|
1592
|
+
"async-trait",
|
|
1593
|
+
"env_logger",
|
|
1594
|
+
"futures",
|
|
1595
|
+
"half",
|
|
1596
|
+
"kapsl-core",
|
|
1597
|
+
"kapsl-engine-api",
|
|
1598
|
+
"kapsl-hal",
|
|
1599
|
+
"kapsl-kernels",
|
|
1600
|
+
"kapsl-quantization",
|
|
1601
|
+
"llama-cpp-2",
|
|
1602
|
+
"log",
|
|
1603
|
+
"ndarray 0.17.2",
|
|
1604
|
+
"ort",
|
|
1605
|
+
"serde",
|
|
1606
|
+
"serde_json",
|
|
1607
|
+
"thiserror 1.0.69",
|
|
1608
|
+
"tokenizers",
|
|
1609
|
+
"tokio",
|
|
1610
|
+
"tracing",
|
|
1611
|
+
"uuid",
|
|
1612
|
+
]
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "kapsl-monitor"
|
|
1616
|
+
version = "0.1.0"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"anyhow",
|
|
1619
|
+
"async-trait",
|
|
1620
|
+
"futures",
|
|
1621
|
+
"kapsl-engine-api",
|
|
1622
|
+
"prometheus",
|
|
1623
|
+
"thiserror 1.0.69",
|
|
1624
|
+
"tokio",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "kapsl-optimizer"
|
|
1629
|
+
version = "0.1.0"
|
|
1630
|
+
dependencies = [
|
|
1631
|
+
"anyhow",
|
|
1632
|
+
"kapsl-core",
|
|
1633
|
+
"kapsl-engine-api",
|
|
1634
|
+
"log",
|
|
1635
|
+
"serde",
|
|
1636
|
+
"serde_json",
|
|
1637
|
+
"tempfile",
|
|
1638
|
+
"thiserror 1.0.69",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "kapsl-pyo3"
|
|
1643
|
+
version = "0.1.0"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"bincode",
|
|
1646
|
+
"kapsl-engine-api",
|
|
1647
|
+
"kapsl-ipc",
|
|
1648
|
+
"kapsl-shm",
|
|
1649
|
+
"kapsl-transport",
|
|
1650
|
+
"libc",
|
|
1651
|
+
"numpy",
|
|
1652
|
+
"pyo3",
|
|
1653
|
+
"serde",
|
|
1654
|
+
"tokio",
|
|
1655
|
+
]
|
|
1656
|
+
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "kapsl-quantization"
|
|
1659
|
+
version = "0.1.0"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"anyhow",
|
|
1662
|
+
"half",
|
|
1663
|
+
"log",
|
|
1664
|
+
"safetensors",
|
|
1665
|
+
"serde",
|
|
1666
|
+
"serde_json",
|
|
1667
|
+
"thiserror 1.0.69",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "kapsl-rag"
|
|
1672
|
+
version = "0.1.0"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"async-trait",
|
|
1675
|
+
"base64 0.22.1",
|
|
1676
|
+
"bytes",
|
|
1677
|
+
"cap-std",
|
|
1678
|
+
"kapsl-rag-sdk",
|
|
1679
|
+
"rusqlite",
|
|
1680
|
+
"serde",
|
|
1681
|
+
"serde_json",
|
|
1682
|
+
"thiserror 1.0.69",
|
|
1683
|
+
"toml 0.8.23",
|
|
1684
|
+
"wasmtime",
|
|
1685
|
+
"wasmtime-wasi",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "kapsl-rag-sdk"
|
|
1690
|
+
version = "0.1.0"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"async-trait",
|
|
1693
|
+
"futures",
|
|
1694
|
+
"serde",
|
|
1695
|
+
"serde_json",
|
|
1696
|
+
"thiserror 1.0.69",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "kapsl-scheduler"
|
|
1701
|
+
version = "0.1.0"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"async-trait",
|
|
1704
|
+
"futures",
|
|
1705
|
+
"kapsl-engine-api",
|
|
1706
|
+
"kapsl-hal",
|
|
1707
|
+
"log",
|
|
1708
|
+
"rayon",
|
|
1709
|
+
"tokio",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "kapsl-shm"
|
|
1714
|
+
version = "0.1.0"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"async-trait",
|
|
1717
|
+
"bincode",
|
|
1718
|
+
"crossbeam",
|
|
1719
|
+
"kapsl-engine-api",
|
|
1720
|
+
"kapsl-scheduler",
|
|
1721
|
+
"kapsl-transport",
|
|
1722
|
+
"libc",
|
|
1723
|
+
"log",
|
|
1724
|
+
"memmap2",
|
|
1725
|
+
"prometheus",
|
|
1726
|
+
"serde",
|
|
1727
|
+
"shared_memory",
|
|
1728
|
+
"thiserror 1.0.69",
|
|
1729
|
+
"tokio",
|
|
1730
|
+
]
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "kapsl-transport"
|
|
1734
|
+
version = "0.1.0"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"async-trait",
|
|
1737
|
+
"bincode",
|
|
1738
|
+
"kapsl-engine-api",
|
|
1739
|
+
"log",
|
|
1740
|
+
"serde",
|
|
1741
|
+
"thiserror 1.0.69",
|
|
1742
|
+
"tokio",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "lazy_static"
|
|
1747
|
+
version = "1.5.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "leb128"
|
|
1753
|
+
version = "0.2.5"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "leb128fmt"
|
|
1759
|
+
version = "0.1.0"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "libc"
|
|
1765
|
+
version = "0.2.183"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "libloading"
|
|
1771
|
+
version = "0.8.9"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"cfg-if",
|
|
1776
|
+
"windows-link",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "libredox"
|
|
1781
|
+
version = "0.1.14"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"bitflags 2.11.0",
|
|
1786
|
+
"libc",
|
|
1787
|
+
"plain",
|
|
1788
|
+
"redox_syscall 0.7.3",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "libsqlite3-sys"
|
|
1793
|
+
version = "0.28.0"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"cc",
|
|
1798
|
+
"pkg-config",
|
|
1799
|
+
"vcpkg",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "linux-raw-sys"
|
|
1804
|
+
version = "0.4.15"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "linux-raw-sys"
|
|
1810
|
+
version = "0.12.1"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1813
|
+
|
|
1814
|
+
[[package]]
|
|
1815
|
+
name = "litemap"
|
|
1816
|
+
version = "0.8.1"
|
|
1817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "llama-cpp-2"
|
|
1822
|
+
version = "0.1.138"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "2947ab625c59d1fdf42e61f538c3fa66f43de2f78316971920873f359483d1d8"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"encoding_rs",
|
|
1827
|
+
"enumflags2",
|
|
1828
|
+
"llama-cpp-sys-2",
|
|
1829
|
+
"thiserror 2.0.18",
|
|
1830
|
+
"tracing",
|
|
1831
|
+
"tracing-core",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "llama-cpp-sys-2"
|
|
1836
|
+
version = "0.1.138"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "84a529006bf16af70c7485ba957820dc2bc9467d75697e97970c81d2da73c76f"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"bindgen",
|
|
1841
|
+
"cc",
|
|
1842
|
+
"cmake",
|
|
1843
|
+
"find_cuda_helper",
|
|
1844
|
+
"glob",
|
|
1845
|
+
"walkdir",
|
|
1846
|
+
]
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "lock_api"
|
|
1850
|
+
version = "0.4.14"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"scopeguard",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "log"
|
|
1859
|
+
version = "0.4.29"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "lru"
|
|
1865
|
+
version = "0.12.5"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"hashbrown 0.15.5",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "lzma-rust2"
|
|
1874
|
+
version = "0.15.7"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "mach"
|
|
1880
|
+
version = "0.3.2"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"libc",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "macro_rules_attribute"
|
|
1889
|
+
version = "0.2.2"
|
|
1890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
+
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
|
|
1892
|
+
dependencies = [
|
|
1893
|
+
"macro_rules_attribute-proc_macro",
|
|
1894
|
+
"paste",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "macro_rules_attribute-proc_macro"
|
|
1899
|
+
version = "0.2.2"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "matrixmultiply"
|
|
1905
|
+
version = "0.3.10"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"autocfg",
|
|
1910
|
+
"rawpointer",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "maybe-owned"
|
|
1915
|
+
version = "0.3.4"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
1918
|
+
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "memchr"
|
|
1921
|
+
version = "2.8.0"
|
|
1922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "memfd"
|
|
1927
|
+
version = "0.6.5"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"rustix 1.1.4",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "memmap2"
|
|
1936
|
+
version = "0.9.10"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"libc",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "memoffset"
|
|
1945
|
+
version = "0.6.5"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"autocfg",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "memoffset"
|
|
1954
|
+
version = "0.9.1"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"autocfg",
|
|
1959
|
+
]
|
|
1960
|
+
|
|
1961
|
+
[[package]]
|
|
1962
|
+
name = "minimal-lexical"
|
|
1963
|
+
version = "0.2.1"
|
|
1964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "miniz_oxide"
|
|
1969
|
+
version = "0.8.9"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"adler2",
|
|
1974
|
+
"simd-adler32",
|
|
1975
|
+
]
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "mio"
|
|
1979
|
+
version = "1.1.1"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"libc",
|
|
1984
|
+
"wasi",
|
|
1985
|
+
"windows-sys 0.61.2",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "monostate"
|
|
1990
|
+
version = "0.1.18"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"monostate-impl",
|
|
1995
|
+
"serde",
|
|
1996
|
+
"serde_core",
|
|
1997
|
+
]
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "monostate-impl"
|
|
2001
|
+
version = "0.1.18"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
|
|
2004
|
+
dependencies = [
|
|
2005
|
+
"proc-macro2",
|
|
2006
|
+
"quote",
|
|
2007
|
+
"syn",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "native-tls"
|
|
2012
|
+
version = "0.2.18"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"libc",
|
|
2017
|
+
"log",
|
|
2018
|
+
"openssl",
|
|
2019
|
+
"openssl-probe",
|
|
2020
|
+
"openssl-sys",
|
|
2021
|
+
"schannel",
|
|
2022
|
+
"security-framework",
|
|
2023
|
+
"security-framework-sys",
|
|
2024
|
+
"tempfile",
|
|
2025
|
+
]
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "ndarray"
|
|
2029
|
+
version = "0.16.1"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
2032
|
+
dependencies = [
|
|
2033
|
+
"matrixmultiply",
|
|
2034
|
+
"num-complex",
|
|
2035
|
+
"num-integer",
|
|
2036
|
+
"num-traits",
|
|
2037
|
+
"portable-atomic",
|
|
2038
|
+
"portable-atomic-util",
|
|
2039
|
+
"rawpointer",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "ndarray"
|
|
2044
|
+
version = "0.17.2"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
2047
|
+
dependencies = [
|
|
2048
|
+
"matrixmultiply",
|
|
2049
|
+
"num-complex",
|
|
2050
|
+
"num-integer",
|
|
2051
|
+
"num-traits",
|
|
2052
|
+
"portable-atomic",
|
|
2053
|
+
"portable-atomic-util",
|
|
2054
|
+
"rawpointer",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "nix"
|
|
2059
|
+
version = "0.23.2"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"bitflags 1.3.2",
|
|
2064
|
+
"cc",
|
|
2065
|
+
"cfg-if",
|
|
2066
|
+
"libc",
|
|
2067
|
+
"memoffset 0.6.5",
|
|
2068
|
+
]
|
|
2069
|
+
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "nom"
|
|
2072
|
+
version = "7.1.3"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2075
|
+
dependencies = [
|
|
2076
|
+
"memchr",
|
|
2077
|
+
"minimal-lexical",
|
|
2078
|
+
]
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "num-complex"
|
|
2082
|
+
version = "0.4.6"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2085
|
+
dependencies = [
|
|
2086
|
+
"num-traits",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "num-integer"
|
|
2091
|
+
version = "0.1.46"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"num-traits",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "num-traits"
|
|
2100
|
+
version = "0.2.19"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"autocfg",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "number_prefix"
|
|
2109
|
+
version = "0.4.0"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "numpy"
|
|
2115
|
+
version = "0.22.1"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "edb929bc0da91a4d85ed6c0a84deaa53d411abfb387fc271124f91bf6b89f14e"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"libc",
|
|
2120
|
+
"ndarray 0.16.1",
|
|
2121
|
+
"num-complex",
|
|
2122
|
+
"num-integer",
|
|
2123
|
+
"num-traits",
|
|
2124
|
+
"pyo3",
|
|
2125
|
+
"rustc-hash 1.1.0",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "nvml-wrapper"
|
|
2130
|
+
version = "0.10.0"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "0c9bff0aa1d48904a1385ea2a8b97576fbdcbc9a3cfccd0d31fe978e1c4038c5"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"bitflags 2.11.0",
|
|
2135
|
+
"libloading",
|
|
2136
|
+
"nvml-wrapper-sys",
|
|
2137
|
+
"static_assertions",
|
|
2138
|
+
"thiserror 1.0.69",
|
|
2139
|
+
"wrapcenum-derive",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "nvml-wrapper-sys"
|
|
2144
|
+
version = "0.8.0"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "698d45156f28781a4e79652b6ebe2eaa0589057d588d3aec1333f6466f13fcb5"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"libloading",
|
|
2149
|
+
]
|
|
2150
|
+
|
|
2151
|
+
[[package]]
|
|
2152
|
+
name = "object"
|
|
2153
|
+
version = "0.32.2"
|
|
2154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2156
|
+
dependencies = [
|
|
2157
|
+
"crc32fast",
|
|
2158
|
+
"hashbrown 0.14.5",
|
|
2159
|
+
"indexmap",
|
|
2160
|
+
"memchr",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "object"
|
|
2165
|
+
version = "0.37.3"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"memchr",
|
|
2170
|
+
]
|
|
2171
|
+
|
|
2172
|
+
[[package]]
|
|
2173
|
+
name = "once_cell"
|
|
2174
|
+
version = "1.21.3"
|
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "onig"
|
|
2180
|
+
version = "6.5.1"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"bitflags 2.11.0",
|
|
2185
|
+
"libc",
|
|
2186
|
+
"once_cell",
|
|
2187
|
+
"onig_sys",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "onig_sys"
|
|
2192
|
+
version = "69.9.1"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"cc",
|
|
2197
|
+
"pkg-config",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "openssl"
|
|
2202
|
+
version = "0.10.75"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"bitflags 2.11.0",
|
|
2207
|
+
"cfg-if",
|
|
2208
|
+
"foreign-types",
|
|
2209
|
+
"libc",
|
|
2210
|
+
"once_cell",
|
|
2211
|
+
"openssl-macros",
|
|
2212
|
+
"openssl-sys",
|
|
2213
|
+
]
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "openssl-macros"
|
|
2217
|
+
version = "0.1.1"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
2220
|
+
dependencies = [
|
|
2221
|
+
"proc-macro2",
|
|
2222
|
+
"quote",
|
|
2223
|
+
"syn",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
2226
|
+
[[package]]
|
|
2227
|
+
name = "openssl-probe"
|
|
2228
|
+
version = "0.2.1"
|
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2231
|
+
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "openssl-sys"
|
|
2234
|
+
version = "0.9.111"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
2237
|
+
dependencies = [
|
|
2238
|
+
"cc",
|
|
2239
|
+
"libc",
|
|
2240
|
+
"pkg-config",
|
|
2241
|
+
"vcpkg",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "ort"
|
|
2246
|
+
version = "2.0.0-rc.11"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "4a5df903c0d2c07b56950f1058104ab0c8557159f2741782223704de9be73c3c"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"half",
|
|
2251
|
+
"ndarray 0.17.2",
|
|
2252
|
+
"ort-sys",
|
|
2253
|
+
"smallvec",
|
|
2254
|
+
"tracing",
|
|
2255
|
+
"ureq",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "ort-sys"
|
|
2260
|
+
version = "2.0.0-rc.11"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "06503bb33f294c5f1ba484011e053bfa6ae227074bdb841e9863492dc5960d4b"
|
|
2263
|
+
dependencies = [
|
|
2264
|
+
"hmac-sha256",
|
|
2265
|
+
"lzma-rust2",
|
|
2266
|
+
"ureq",
|
|
2267
|
+
]
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "parking_lot"
|
|
2271
|
+
version = "0.12.5"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2274
|
+
dependencies = [
|
|
2275
|
+
"lock_api",
|
|
2276
|
+
"parking_lot_core",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "parking_lot_core"
|
|
2281
|
+
version = "0.9.12"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"cfg-if",
|
|
2286
|
+
"libc",
|
|
2287
|
+
"redox_syscall 0.5.18",
|
|
2288
|
+
"smallvec",
|
|
2289
|
+
"windows-link",
|
|
2290
|
+
]
|
|
2291
|
+
|
|
2292
|
+
[[package]]
|
|
2293
|
+
name = "paste"
|
|
2294
|
+
version = "1.0.15"
|
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "pem-rfc7468"
|
|
2300
|
+
version = "0.7.0"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2303
|
+
dependencies = [
|
|
2304
|
+
"base64ct",
|
|
2305
|
+
]
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "percent-encoding"
|
|
2309
|
+
version = "2.3.2"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2312
|
+
|
|
2313
|
+
[[package]]
|
|
2314
|
+
name = "pin-project-lite"
|
|
2315
|
+
version = "0.2.17"
|
|
2316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2318
|
+
|
|
2319
|
+
[[package]]
|
|
2320
|
+
name = "pkg-config"
|
|
2321
|
+
version = "0.3.32"
|
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "plain"
|
|
2327
|
+
version = "0.2.3"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "portable-atomic"
|
|
2333
|
+
version = "1.13.1"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "portable-atomic-util"
|
|
2339
|
+
version = "0.2.5"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"portable-atomic",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "potential_utf"
|
|
2348
|
+
version = "0.1.4"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"zerovec",
|
|
2353
|
+
]
|
|
2354
|
+
|
|
2355
|
+
[[package]]
|
|
2356
|
+
name = "ppv-lite86"
|
|
2357
|
+
version = "0.2.21"
|
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2360
|
+
dependencies = [
|
|
2361
|
+
"zerocopy",
|
|
2362
|
+
]
|
|
2363
|
+
|
|
2364
|
+
[[package]]
|
|
2365
|
+
name = "prettyplease"
|
|
2366
|
+
version = "0.2.37"
|
|
2367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2369
|
+
dependencies = [
|
|
2370
|
+
"proc-macro2",
|
|
2371
|
+
"syn",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "proc-macro2"
|
|
2376
|
+
version = "1.0.106"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"unicode-ident",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "prometheus"
|
|
2385
|
+
version = "0.14.0"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"cfg-if",
|
|
2390
|
+
"fnv",
|
|
2391
|
+
"lazy_static",
|
|
2392
|
+
"memchr",
|
|
2393
|
+
"parking_lot",
|
|
2394
|
+
"protobuf",
|
|
2395
|
+
"thiserror 2.0.18",
|
|
2396
|
+
]
|
|
2397
|
+
|
|
2398
|
+
[[package]]
|
|
2399
|
+
name = "protobuf"
|
|
2400
|
+
version = "3.7.2"
|
|
2401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2402
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
2403
|
+
dependencies = [
|
|
2404
|
+
"once_cell",
|
|
2405
|
+
"protobuf-support",
|
|
2406
|
+
"thiserror 1.0.69",
|
|
2407
|
+
]
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "protobuf-support"
|
|
2411
|
+
version = "3.7.2"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
2414
|
+
dependencies = [
|
|
2415
|
+
"thiserror 1.0.69",
|
|
2416
|
+
]
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "psm"
|
|
2420
|
+
version = "0.1.30"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"ar_archive_writer",
|
|
2425
|
+
"cc",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "pyo3"
|
|
2430
|
+
version = "0.22.6"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"cfg-if",
|
|
2435
|
+
"indoc",
|
|
2436
|
+
"libc",
|
|
2437
|
+
"memoffset 0.9.1",
|
|
2438
|
+
"once_cell",
|
|
2439
|
+
"portable-atomic",
|
|
2440
|
+
"pyo3-build-config",
|
|
2441
|
+
"pyo3-ffi",
|
|
2442
|
+
"pyo3-macros",
|
|
2443
|
+
"unindent",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "pyo3-build-config"
|
|
2448
|
+
version = "0.22.6"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
2451
|
+
dependencies = [
|
|
2452
|
+
"once_cell",
|
|
2453
|
+
"python3-dll-a",
|
|
2454
|
+
"target-lexicon",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "pyo3-ffi"
|
|
2459
|
+
version = "0.22.6"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"libc",
|
|
2464
|
+
"pyo3-build-config",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "pyo3-macros"
|
|
2469
|
+
version = "0.22.6"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"proc-macro2",
|
|
2474
|
+
"pyo3-macros-backend",
|
|
2475
|
+
"quote",
|
|
2476
|
+
"syn",
|
|
2477
|
+
]
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "pyo3-macros-backend"
|
|
2481
|
+
version = "0.22.6"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"heck 0.5.0",
|
|
2486
|
+
"proc-macro2",
|
|
2487
|
+
"pyo3-build-config",
|
|
2488
|
+
"quote",
|
|
2489
|
+
"syn",
|
|
2490
|
+
]
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "python3-dll-a"
|
|
2494
|
+
version = "0.2.14"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
|
|
2497
|
+
dependencies = [
|
|
2498
|
+
"cc",
|
|
2499
|
+
]
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "quote"
|
|
2503
|
+
version = "1.0.45"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2506
|
+
dependencies = [
|
|
2507
|
+
"proc-macro2",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "r-efi"
|
|
2512
|
+
version = "5.3.0"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "r-efi"
|
|
2518
|
+
version = "6.0.0"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "rand"
|
|
2524
|
+
version = "0.8.5"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"libc",
|
|
2529
|
+
"rand_chacha",
|
|
2530
|
+
"rand_core",
|
|
2531
|
+
]
|
|
2532
|
+
|
|
2533
|
+
[[package]]
|
|
2534
|
+
name = "rand_chacha"
|
|
2535
|
+
version = "0.3.1"
|
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2537
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2538
|
+
dependencies = [
|
|
2539
|
+
"ppv-lite86",
|
|
2540
|
+
"rand_core",
|
|
2541
|
+
]
|
|
2542
|
+
|
|
2543
|
+
[[package]]
|
|
2544
|
+
name = "rand_core"
|
|
2545
|
+
version = "0.6.4"
|
|
2546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2548
|
+
dependencies = [
|
|
2549
|
+
"getrandom 0.2.17",
|
|
2550
|
+
]
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "rawpointer"
|
|
2554
|
+
version = "0.2.1"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "rayon"
|
|
2560
|
+
version = "1.11.0"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"either",
|
|
2565
|
+
"rayon-core",
|
|
2566
|
+
]
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "rayon-cond"
|
|
2570
|
+
version = "0.3.0"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"either",
|
|
2575
|
+
"itertools 0.11.0",
|
|
2576
|
+
"rayon",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "rayon-core"
|
|
2581
|
+
version = "1.13.0"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"crossbeam-deque",
|
|
2586
|
+
"crossbeam-utils",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "redox_syscall"
|
|
2591
|
+
version = "0.5.18"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"bitflags 2.11.0",
|
|
2596
|
+
]
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "redox_syscall"
|
|
2600
|
+
version = "0.7.3"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"bitflags 2.11.0",
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "redox_users"
|
|
2609
|
+
version = "0.4.6"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"getrandom 0.2.17",
|
|
2614
|
+
"libredox",
|
|
2615
|
+
"thiserror 1.0.69",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "regalloc2"
|
|
2620
|
+
version = "0.9.3"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
|
|
2623
|
+
dependencies = [
|
|
2624
|
+
"hashbrown 0.13.2",
|
|
2625
|
+
"log",
|
|
2626
|
+
"rustc-hash 1.1.0",
|
|
2627
|
+
"slice-group-by",
|
|
2628
|
+
"smallvec",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "regex"
|
|
2633
|
+
version = "1.12.3"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"aho-corasick",
|
|
2638
|
+
"memchr",
|
|
2639
|
+
"regex-automata",
|
|
2640
|
+
"regex-syntax",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "regex-automata"
|
|
2645
|
+
version = "0.4.14"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"aho-corasick",
|
|
2650
|
+
"memchr",
|
|
2651
|
+
"regex-syntax",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "regex-syntax"
|
|
2656
|
+
version = "0.8.10"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "rusqlite"
|
|
2662
|
+
version = "0.31.0"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"bitflags 2.11.0",
|
|
2667
|
+
"fallible-iterator",
|
|
2668
|
+
"fallible-streaming-iterator",
|
|
2669
|
+
"hashlink",
|
|
2670
|
+
"libsqlite3-sys",
|
|
2671
|
+
"smallvec",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "rustc-demangle"
|
|
2676
|
+
version = "0.1.27"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
2679
|
+
|
|
2680
|
+
[[package]]
|
|
2681
|
+
name = "rustc-hash"
|
|
2682
|
+
version = "1.1.0"
|
|
2683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "rustc-hash"
|
|
2688
|
+
version = "2.1.1"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2691
|
+
|
|
2692
|
+
[[package]]
|
|
2693
|
+
name = "rustix"
|
|
2694
|
+
version = "0.38.44"
|
|
2695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2696
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2697
|
+
dependencies = [
|
|
2698
|
+
"bitflags 2.11.0",
|
|
2699
|
+
"errno",
|
|
2700
|
+
"itoa",
|
|
2701
|
+
"libc",
|
|
2702
|
+
"linux-raw-sys 0.4.15",
|
|
2703
|
+
"once_cell",
|
|
2704
|
+
"windows-sys 0.59.0",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "rustix"
|
|
2709
|
+
version = "1.1.4"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"bitflags 2.11.0",
|
|
2714
|
+
"errno",
|
|
2715
|
+
"libc",
|
|
2716
|
+
"linux-raw-sys 0.12.1",
|
|
2717
|
+
"windows-sys 0.61.2",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "rustls-pki-types"
|
|
2722
|
+
version = "1.14.0"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2725
|
+
dependencies = [
|
|
2726
|
+
"zeroize",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
2729
|
+
[[package]]
|
|
2730
|
+
name = "rustversion"
|
|
2731
|
+
version = "1.0.22"
|
|
2732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2734
|
+
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "ryu"
|
|
2737
|
+
version = "1.0.23"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "safetensors"
|
|
2743
|
+
version = "0.3.3"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df"
|
|
2746
|
+
dependencies = [
|
|
2747
|
+
"serde",
|
|
2748
|
+
"serde_json",
|
|
2749
|
+
]
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "same-file"
|
|
2753
|
+
version = "1.0.6"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2756
|
+
dependencies = [
|
|
2757
|
+
"winapi-util",
|
|
2758
|
+
]
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "schannel"
|
|
2762
|
+
version = "0.1.29"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2765
|
+
dependencies = [
|
|
2766
|
+
"windows-sys 0.61.2",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "scopeguard"
|
|
2771
|
+
version = "1.2.0"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "security-framework"
|
|
2777
|
+
version = "3.7.0"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2780
|
+
dependencies = [
|
|
2781
|
+
"bitflags 2.11.0",
|
|
2782
|
+
"core-foundation",
|
|
2783
|
+
"core-foundation-sys",
|
|
2784
|
+
"libc",
|
|
2785
|
+
"security-framework-sys",
|
|
2786
|
+
]
|
|
2787
|
+
|
|
2788
|
+
[[package]]
|
|
2789
|
+
name = "security-framework-sys"
|
|
2790
|
+
version = "2.17.0"
|
|
2791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2793
|
+
dependencies = [
|
|
2794
|
+
"core-foundation-sys",
|
|
2795
|
+
"libc",
|
|
2796
|
+
]
|
|
2797
|
+
|
|
2798
|
+
[[package]]
|
|
2799
|
+
name = "semver"
|
|
2800
|
+
version = "1.0.27"
|
|
2801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2802
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "serde"
|
|
2806
|
+
version = "1.0.228"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"serde_core",
|
|
2811
|
+
"serde_derive",
|
|
2812
|
+
]
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "serde_core"
|
|
2816
|
+
version = "1.0.228"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2819
|
+
dependencies = [
|
|
2820
|
+
"serde_derive",
|
|
2821
|
+
]
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "serde_derive"
|
|
2825
|
+
version = "1.0.228"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2828
|
+
dependencies = [
|
|
2829
|
+
"proc-macro2",
|
|
2830
|
+
"quote",
|
|
2831
|
+
"syn",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "serde_json"
|
|
2836
|
+
version = "1.0.149"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2839
|
+
dependencies = [
|
|
2840
|
+
"itoa",
|
|
2841
|
+
"memchr",
|
|
2842
|
+
"serde",
|
|
2843
|
+
"serde_core",
|
|
2844
|
+
"zmij",
|
|
2845
|
+
]
|
|
2846
|
+
|
|
2847
|
+
[[package]]
|
|
2848
|
+
name = "serde_spanned"
|
|
2849
|
+
version = "0.6.9"
|
|
2850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2852
|
+
dependencies = [
|
|
2853
|
+
"serde",
|
|
2854
|
+
]
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "serde_yaml"
|
|
2858
|
+
version = "0.9.34+deprecated"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2861
|
+
dependencies = [
|
|
2862
|
+
"indexmap",
|
|
2863
|
+
"itoa",
|
|
2864
|
+
"ryu",
|
|
2865
|
+
"serde",
|
|
2866
|
+
"unsafe-libyaml",
|
|
2867
|
+
]
|
|
2868
|
+
|
|
2869
|
+
[[package]]
|
|
2870
|
+
name = "sha2"
|
|
2871
|
+
version = "0.10.9"
|
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2874
|
+
dependencies = [
|
|
2875
|
+
"cfg-if",
|
|
2876
|
+
"cpufeatures",
|
|
2877
|
+
"digest",
|
|
2878
|
+
]
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "shared_memory"
|
|
2882
|
+
version = "0.12.4"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "ba8593196da75d9dc4f69349682bd4c2099f8cde114257d1ef7ef1b33d1aba54"
|
|
2885
|
+
dependencies = [
|
|
2886
|
+
"cfg-if",
|
|
2887
|
+
"libc",
|
|
2888
|
+
"nix",
|
|
2889
|
+
"rand",
|
|
2890
|
+
"win-sys",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "shellexpand"
|
|
2895
|
+
version = "2.1.2"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"dirs",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "shlex"
|
|
2904
|
+
version = "1.3.0"
|
|
2905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "signal-hook-registry"
|
|
2910
|
+
version = "1.4.8"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"errno",
|
|
2915
|
+
"libc",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "simd-adler32"
|
|
2920
|
+
version = "0.3.8"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "slab"
|
|
2926
|
+
version = "0.4.12"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "slice-group-by"
|
|
2932
|
+
version = "0.3.1"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "smallvec"
|
|
2938
|
+
version = "1.15.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "socket2"
|
|
2944
|
+
version = "0.6.3"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"libc",
|
|
2949
|
+
"windows-sys 0.61.2",
|
|
2950
|
+
]
|
|
2951
|
+
|
|
2952
|
+
[[package]]
|
|
2953
|
+
name = "socks"
|
|
2954
|
+
version = "0.3.4"
|
|
2955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
|
+
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
|
|
2957
|
+
dependencies = [
|
|
2958
|
+
"byteorder",
|
|
2959
|
+
"libc",
|
|
2960
|
+
"winapi",
|
|
2961
|
+
]
|
|
2962
|
+
|
|
2963
|
+
[[package]]
|
|
2964
|
+
name = "spm_precompiled"
|
|
2965
|
+
version = "0.1.4"
|
|
2966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
|
2968
|
+
dependencies = [
|
|
2969
|
+
"base64 0.13.1",
|
|
2970
|
+
"nom",
|
|
2971
|
+
"serde",
|
|
2972
|
+
"unicode-segmentation",
|
|
2973
|
+
]
|
|
2974
|
+
|
|
2975
|
+
[[package]]
|
|
2976
|
+
name = "sptr"
|
|
2977
|
+
version = "0.3.2"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "stable_deref_trait"
|
|
2983
|
+
version = "1.2.1"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "static_assertions"
|
|
2989
|
+
version = "1.1.0"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "strsim"
|
|
2995
|
+
version = "0.11.1"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "syn"
|
|
3001
|
+
version = "2.0.117"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3004
|
+
dependencies = [
|
|
3005
|
+
"proc-macro2",
|
|
3006
|
+
"quote",
|
|
3007
|
+
"unicode-ident",
|
|
3008
|
+
]
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "synstructure"
|
|
3012
|
+
version = "0.13.2"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3015
|
+
dependencies = [
|
|
3016
|
+
"proc-macro2",
|
|
3017
|
+
"quote",
|
|
3018
|
+
"syn",
|
|
3019
|
+
]
|
|
3020
|
+
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "sys-info"
|
|
3023
|
+
version = "0.9.1"
|
|
3024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
+
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
|
|
3026
|
+
dependencies = [
|
|
3027
|
+
"cc",
|
|
3028
|
+
"libc",
|
|
3029
|
+
]
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "system-interface"
|
|
3033
|
+
version = "0.26.1"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "0682e006dd35771e392a6623ac180999a9a854b1d4a6c12fb2e804941c2b1f58"
|
|
3036
|
+
dependencies = [
|
|
3037
|
+
"bitflags 2.11.0",
|
|
3038
|
+
"cap-fs-ext",
|
|
3039
|
+
"cap-std",
|
|
3040
|
+
"fd-lock",
|
|
3041
|
+
"io-lifetimes",
|
|
3042
|
+
"rustix 0.38.44",
|
|
3043
|
+
"windows-sys 0.52.0",
|
|
3044
|
+
"winx",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "tar"
|
|
3049
|
+
version = "0.4.44"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"filetime",
|
|
3054
|
+
"libc",
|
|
3055
|
+
"xattr",
|
|
3056
|
+
]
|
|
3057
|
+
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "target-lexicon"
|
|
3060
|
+
version = "0.12.16"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3063
|
+
|
|
3064
|
+
[[package]]
|
|
3065
|
+
name = "tempfile"
|
|
3066
|
+
version = "3.26.0"
|
|
3067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3068
|
+
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
3069
|
+
dependencies = [
|
|
3070
|
+
"fastrand",
|
|
3071
|
+
"getrandom 0.4.2",
|
|
3072
|
+
"once_cell",
|
|
3073
|
+
"rustix 1.1.4",
|
|
3074
|
+
"windows-sys 0.61.2",
|
|
3075
|
+
]
|
|
3076
|
+
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "termcolor"
|
|
3079
|
+
version = "1.4.1"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3082
|
+
dependencies = [
|
|
3083
|
+
"winapi-util",
|
|
3084
|
+
]
|
|
3085
|
+
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "thiserror"
|
|
3088
|
+
version = "1.0.69"
|
|
3089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3091
|
+
dependencies = [
|
|
3092
|
+
"thiserror-impl 1.0.69",
|
|
3093
|
+
]
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "thiserror"
|
|
3097
|
+
version = "2.0.18"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3100
|
+
dependencies = [
|
|
3101
|
+
"thiserror-impl 2.0.18",
|
|
3102
|
+
]
|
|
3103
|
+
|
|
3104
|
+
[[package]]
|
|
3105
|
+
name = "thiserror-impl"
|
|
3106
|
+
version = "1.0.69"
|
|
3107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3109
|
+
dependencies = [
|
|
3110
|
+
"proc-macro2",
|
|
3111
|
+
"quote",
|
|
3112
|
+
"syn",
|
|
3113
|
+
]
|
|
3114
|
+
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "thiserror-impl"
|
|
3117
|
+
version = "2.0.18"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3120
|
+
dependencies = [
|
|
3121
|
+
"proc-macro2",
|
|
3122
|
+
"quote",
|
|
3123
|
+
"syn",
|
|
3124
|
+
]
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "tinystr"
|
|
3128
|
+
version = "0.8.2"
|
|
3129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3131
|
+
dependencies = [
|
|
3132
|
+
"displaydoc",
|
|
3133
|
+
"zerovec",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "tokenizers"
|
|
3138
|
+
version = "0.20.4"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "3b08cc37428a476fc9e20ac850132a513a2e1ce32b6a31addf2b74fa7033b905"
|
|
3141
|
+
dependencies = [
|
|
3142
|
+
"aho-corasick",
|
|
3143
|
+
"derive_builder",
|
|
3144
|
+
"esaxx-rs",
|
|
3145
|
+
"getrandom 0.2.17",
|
|
3146
|
+
"indicatif",
|
|
3147
|
+
"itertools 0.12.1",
|
|
3148
|
+
"lazy_static",
|
|
3149
|
+
"log",
|
|
3150
|
+
"macro_rules_attribute",
|
|
3151
|
+
"monostate",
|
|
3152
|
+
"onig",
|
|
3153
|
+
"paste",
|
|
3154
|
+
"rand",
|
|
3155
|
+
"rayon",
|
|
3156
|
+
"rayon-cond",
|
|
3157
|
+
"regex",
|
|
3158
|
+
"regex-syntax",
|
|
3159
|
+
"serde",
|
|
3160
|
+
"serde_json",
|
|
3161
|
+
"spm_precompiled",
|
|
3162
|
+
"thiserror 1.0.69",
|
|
3163
|
+
"unicode-normalization-alignments",
|
|
3164
|
+
"unicode-segmentation",
|
|
3165
|
+
"unicode_categories",
|
|
3166
|
+
]
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "tokio"
|
|
3170
|
+
version = "1.50.0"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"bytes",
|
|
3175
|
+
"libc",
|
|
3176
|
+
"mio",
|
|
3177
|
+
"parking_lot",
|
|
3178
|
+
"pin-project-lite",
|
|
3179
|
+
"signal-hook-registry",
|
|
3180
|
+
"socket2",
|
|
3181
|
+
"tokio-macros",
|
|
3182
|
+
"windows-sys 0.61.2",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
3185
|
+
[[package]]
|
|
3186
|
+
name = "tokio-macros"
|
|
3187
|
+
version = "2.6.1"
|
|
3188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
3190
|
+
dependencies = [
|
|
3191
|
+
"proc-macro2",
|
|
3192
|
+
"quote",
|
|
3193
|
+
"syn",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "toml"
|
|
3198
|
+
version = "0.5.11"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"serde",
|
|
3203
|
+
]
|
|
3204
|
+
|
|
3205
|
+
[[package]]
|
|
3206
|
+
name = "toml"
|
|
3207
|
+
version = "0.8.23"
|
|
3208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3210
|
+
dependencies = [
|
|
3211
|
+
"serde",
|
|
3212
|
+
"serde_spanned",
|
|
3213
|
+
"toml_datetime",
|
|
3214
|
+
"toml_edit",
|
|
3215
|
+
]
|
|
3216
|
+
|
|
3217
|
+
[[package]]
|
|
3218
|
+
name = "toml_datetime"
|
|
3219
|
+
version = "0.6.11"
|
|
3220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3222
|
+
dependencies = [
|
|
3223
|
+
"serde",
|
|
3224
|
+
]
|
|
3225
|
+
|
|
3226
|
+
[[package]]
|
|
3227
|
+
name = "toml_edit"
|
|
3228
|
+
version = "0.22.27"
|
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3231
|
+
dependencies = [
|
|
3232
|
+
"indexmap",
|
|
3233
|
+
"serde",
|
|
3234
|
+
"serde_spanned",
|
|
3235
|
+
"toml_datetime",
|
|
3236
|
+
"toml_write",
|
|
3237
|
+
"winnow",
|
|
3238
|
+
]
|
|
3239
|
+
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "toml_write"
|
|
3242
|
+
version = "0.1.2"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3245
|
+
|
|
3246
|
+
[[package]]
|
|
3247
|
+
name = "tracing"
|
|
3248
|
+
version = "0.1.44"
|
|
3249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3250
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3251
|
+
dependencies = [
|
|
3252
|
+
"log",
|
|
3253
|
+
"pin-project-lite",
|
|
3254
|
+
"tracing-attributes",
|
|
3255
|
+
"tracing-core",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "tracing-attributes"
|
|
3260
|
+
version = "0.1.31"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3263
|
+
dependencies = [
|
|
3264
|
+
"proc-macro2",
|
|
3265
|
+
"quote",
|
|
3266
|
+
"syn",
|
|
3267
|
+
]
|
|
3268
|
+
|
|
3269
|
+
[[package]]
|
|
3270
|
+
name = "tracing-core"
|
|
3271
|
+
version = "0.1.36"
|
|
3272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3273
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3274
|
+
dependencies = [
|
|
3275
|
+
"once_cell",
|
|
3276
|
+
"valuable",
|
|
3277
|
+
]
|
|
3278
|
+
|
|
3279
|
+
[[package]]
|
|
3280
|
+
name = "typenum"
|
|
3281
|
+
version = "1.19.0"
|
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3284
|
+
|
|
3285
|
+
[[package]]
|
|
3286
|
+
name = "unicode-ident"
|
|
3287
|
+
version = "1.0.24"
|
|
3288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3289
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3290
|
+
|
|
3291
|
+
[[package]]
|
|
3292
|
+
name = "unicode-normalization-alignments"
|
|
3293
|
+
version = "0.1.12"
|
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3295
|
+
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
|
|
3296
|
+
dependencies = [
|
|
3297
|
+
"smallvec",
|
|
3298
|
+
]
|
|
3299
|
+
|
|
3300
|
+
[[package]]
|
|
3301
|
+
name = "unicode-segmentation"
|
|
3302
|
+
version = "1.12.0"
|
|
3303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "unicode-width"
|
|
3308
|
+
version = "0.2.2"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3311
|
+
|
|
3312
|
+
[[package]]
|
|
3313
|
+
name = "unicode-xid"
|
|
3314
|
+
version = "0.2.6"
|
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3317
|
+
|
|
3318
|
+
[[package]]
|
|
3319
|
+
name = "unicode_categories"
|
|
3320
|
+
version = "0.1.1"
|
|
3321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3322
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
3323
|
+
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "unindent"
|
|
3326
|
+
version = "0.2.4"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "unsafe-libyaml"
|
|
3332
|
+
version = "0.2.11"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3335
|
+
|
|
3336
|
+
[[package]]
|
|
3337
|
+
name = "ureq"
|
|
3338
|
+
version = "3.2.0"
|
|
3339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
+
checksum = "fdc97a28575b85cfedf2a7e7d3cc64b3e11bd8ac766666318003abbacc7a21fc"
|
|
3341
|
+
dependencies = [
|
|
3342
|
+
"base64 0.22.1",
|
|
3343
|
+
"der",
|
|
3344
|
+
"log",
|
|
3345
|
+
"native-tls",
|
|
3346
|
+
"percent-encoding",
|
|
3347
|
+
"rustls-pki-types",
|
|
3348
|
+
"socks",
|
|
3349
|
+
"ureq-proto",
|
|
3350
|
+
"utf-8",
|
|
3351
|
+
"webpki-root-certs",
|
|
3352
|
+
]
|
|
3353
|
+
|
|
3354
|
+
[[package]]
|
|
3355
|
+
name = "ureq-proto"
|
|
3356
|
+
version = "0.5.3"
|
|
3357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
+
checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
|
|
3359
|
+
dependencies = [
|
|
3360
|
+
"base64 0.22.1",
|
|
3361
|
+
"http",
|
|
3362
|
+
"httparse",
|
|
3363
|
+
"log",
|
|
3364
|
+
]
|
|
3365
|
+
|
|
3366
|
+
[[package]]
|
|
3367
|
+
name = "url"
|
|
3368
|
+
version = "2.5.8"
|
|
3369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3370
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3371
|
+
dependencies = [
|
|
3372
|
+
"form_urlencoded",
|
|
3373
|
+
"idna",
|
|
3374
|
+
"percent-encoding",
|
|
3375
|
+
"serde",
|
|
3376
|
+
]
|
|
3377
|
+
|
|
3378
|
+
[[package]]
|
|
3379
|
+
name = "utf-8"
|
|
3380
|
+
version = "0.7.6"
|
|
3381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3382
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3383
|
+
|
|
3384
|
+
[[package]]
|
|
3385
|
+
name = "utf8_iter"
|
|
3386
|
+
version = "1.0.4"
|
|
3387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3388
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3389
|
+
|
|
3390
|
+
[[package]]
|
|
3391
|
+
name = "uuid"
|
|
3392
|
+
version = "1.22.0"
|
|
3393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
+
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
|
|
3395
|
+
dependencies = [
|
|
3396
|
+
"getrandom 0.4.2",
|
|
3397
|
+
"js-sys",
|
|
3398
|
+
"wasm-bindgen",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "valuable"
|
|
3403
|
+
version = "0.1.1"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3406
|
+
|
|
3407
|
+
[[package]]
|
|
3408
|
+
name = "vcpkg"
|
|
3409
|
+
version = "0.2.15"
|
|
3410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "version_check"
|
|
3415
|
+
version = "0.9.5"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "walkdir"
|
|
3421
|
+
version = "2.5.0"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3424
|
+
dependencies = [
|
|
3425
|
+
"same-file",
|
|
3426
|
+
"winapi-util",
|
|
3427
|
+
]
|
|
3428
|
+
|
|
3429
|
+
[[package]]
|
|
3430
|
+
name = "wasi"
|
|
3431
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3434
|
+
|
|
3435
|
+
[[package]]
|
|
3436
|
+
name = "wasi-cap-std-sync"
|
|
3437
|
+
version = "16.0.0"
|
|
3438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3439
|
+
checksum = "154528979a211aa28d969846e883df75705809ed9bcc70aba61460683ea7355b"
|
|
3440
|
+
dependencies = [
|
|
3441
|
+
"anyhow",
|
|
3442
|
+
"async-trait",
|
|
3443
|
+
"cap-fs-ext",
|
|
3444
|
+
"cap-rand",
|
|
3445
|
+
"cap-std",
|
|
3446
|
+
"cap-time-ext",
|
|
3447
|
+
"fs-set-times",
|
|
3448
|
+
"io-extras",
|
|
3449
|
+
"io-lifetimes",
|
|
3450
|
+
"once_cell",
|
|
3451
|
+
"rustix 0.38.44",
|
|
3452
|
+
"system-interface",
|
|
3453
|
+
"tracing",
|
|
3454
|
+
"wasi-common",
|
|
3455
|
+
"windows-sys 0.48.0",
|
|
3456
|
+
]
|
|
3457
|
+
|
|
3458
|
+
[[package]]
|
|
3459
|
+
name = "wasi-common"
|
|
3460
|
+
version = "16.0.0"
|
|
3461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3462
|
+
checksum = "3d888b611fee7d273dd057dc009d2dd3132736f36710ffd65657ac83628d1e3b"
|
|
3463
|
+
dependencies = [
|
|
3464
|
+
"anyhow",
|
|
3465
|
+
"bitflags 2.11.0",
|
|
3466
|
+
"cap-rand",
|
|
3467
|
+
"cap-std",
|
|
3468
|
+
"io-extras",
|
|
3469
|
+
"log",
|
|
3470
|
+
"rustix 0.38.44",
|
|
3471
|
+
"thiserror 1.0.69",
|
|
3472
|
+
"tracing",
|
|
3473
|
+
"wasmtime",
|
|
3474
|
+
"wiggle",
|
|
3475
|
+
"windows-sys 0.48.0",
|
|
3476
|
+
]
|
|
3477
|
+
|
|
3478
|
+
[[package]]
|
|
3479
|
+
name = "wasip2"
|
|
3480
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3482
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3483
|
+
dependencies = [
|
|
3484
|
+
"wit-bindgen",
|
|
3485
|
+
]
|
|
3486
|
+
|
|
3487
|
+
[[package]]
|
|
3488
|
+
name = "wasip3"
|
|
3489
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3491
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3492
|
+
dependencies = [
|
|
3493
|
+
"wit-bindgen",
|
|
3494
|
+
]
|
|
3495
|
+
|
|
3496
|
+
[[package]]
|
|
3497
|
+
name = "wasm-bindgen"
|
|
3498
|
+
version = "0.2.114"
|
|
3499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
3501
|
+
dependencies = [
|
|
3502
|
+
"cfg-if",
|
|
3503
|
+
"once_cell",
|
|
3504
|
+
"rustversion",
|
|
3505
|
+
"wasm-bindgen-macro",
|
|
3506
|
+
"wasm-bindgen-shared",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "wasm-bindgen-macro"
|
|
3511
|
+
version = "0.2.114"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"quote",
|
|
3516
|
+
"wasm-bindgen-macro-support",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "wasm-bindgen-macro-support"
|
|
3521
|
+
version = "0.2.114"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"bumpalo",
|
|
3526
|
+
"proc-macro2",
|
|
3527
|
+
"quote",
|
|
3528
|
+
"syn",
|
|
3529
|
+
"wasm-bindgen-shared",
|
|
3530
|
+
]
|
|
3531
|
+
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "wasm-bindgen-shared"
|
|
3534
|
+
version = "0.2.114"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
3537
|
+
dependencies = [
|
|
3538
|
+
"unicode-ident",
|
|
3539
|
+
]
|
|
3540
|
+
|
|
3541
|
+
[[package]]
|
|
3542
|
+
name = "wasm-encoder"
|
|
3543
|
+
version = "0.38.1"
|
|
3544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
+
checksum = "0ad2b51884de9c7f4fe2fd1043fccb8dcad4b1e29558146ee57a144d15779f3f"
|
|
3546
|
+
dependencies = [
|
|
3547
|
+
"leb128",
|
|
3548
|
+
]
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "wasm-encoder"
|
|
3552
|
+
version = "0.244.0"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3555
|
+
dependencies = [
|
|
3556
|
+
"leb128fmt",
|
|
3557
|
+
"wasmparser 0.244.0",
|
|
3558
|
+
]
|
|
3559
|
+
|
|
3560
|
+
[[package]]
|
|
3561
|
+
name = "wasm-encoder"
|
|
3562
|
+
version = "0.245.1"
|
|
3563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
+
checksum = "3f9dca005e69bf015e45577e415b9af8c67e8ee3c0e38b5b0add5aa92581ed5c"
|
|
3565
|
+
dependencies = [
|
|
3566
|
+
"leb128fmt",
|
|
3567
|
+
"wasmparser 0.245.1",
|
|
3568
|
+
]
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "wasm-metadata"
|
|
3572
|
+
version = "0.244.0"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3575
|
+
dependencies = [
|
|
3576
|
+
"anyhow",
|
|
3577
|
+
"indexmap",
|
|
3578
|
+
"wasm-encoder 0.244.0",
|
|
3579
|
+
"wasmparser 0.244.0",
|
|
3580
|
+
]
|
|
3581
|
+
|
|
3582
|
+
[[package]]
|
|
3583
|
+
name = "wasmparser"
|
|
3584
|
+
version = "0.118.2"
|
|
3585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
+
checksum = "77f1154f1ab868e2a01d9834a805faca7bf8b50d041b4ca714d005d0dab1c50c"
|
|
3587
|
+
dependencies = [
|
|
3588
|
+
"indexmap",
|
|
3589
|
+
"semver",
|
|
3590
|
+
]
|
|
3591
|
+
|
|
3592
|
+
[[package]]
|
|
3593
|
+
name = "wasmparser"
|
|
3594
|
+
version = "0.121.2"
|
|
3595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
+
checksum = "9dbe55c8f9d0dbd25d9447a5a889ff90c0cc3feaa7395310d3d826b2c703eaab"
|
|
3597
|
+
dependencies = [
|
|
3598
|
+
"bitflags 2.11.0",
|
|
3599
|
+
"indexmap",
|
|
3600
|
+
"semver",
|
|
3601
|
+
]
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "wasmparser"
|
|
3605
|
+
version = "0.244.0"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3608
|
+
dependencies = [
|
|
3609
|
+
"bitflags 2.11.0",
|
|
3610
|
+
"hashbrown 0.15.5",
|
|
3611
|
+
"indexmap",
|
|
3612
|
+
"semver",
|
|
3613
|
+
]
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "wasmparser"
|
|
3617
|
+
version = "0.245.1"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e"
|
|
3620
|
+
dependencies = [
|
|
3621
|
+
"bitflags 2.11.0",
|
|
3622
|
+
"indexmap",
|
|
3623
|
+
"semver",
|
|
3624
|
+
]
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "wasmprinter"
|
|
3628
|
+
version = "0.2.80"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "60e73986a6b7fdfedb7c5bf9e7eb71135486507c8fbc4c0c42cffcb6532988b7"
|
|
3631
|
+
dependencies = [
|
|
3632
|
+
"anyhow",
|
|
3633
|
+
"wasmparser 0.121.2",
|
|
3634
|
+
]
|
|
3635
|
+
|
|
3636
|
+
[[package]]
|
|
3637
|
+
name = "wasmtime"
|
|
3638
|
+
version = "16.0.0"
|
|
3639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
+
checksum = "a8e539fded2495422ea3c4dfa7beeddba45904eece182cf315294009e1a323bf"
|
|
3641
|
+
dependencies = [
|
|
3642
|
+
"anyhow",
|
|
3643
|
+
"async-trait",
|
|
3644
|
+
"bincode",
|
|
3645
|
+
"bumpalo",
|
|
3646
|
+
"cfg-if",
|
|
3647
|
+
"encoding_rs",
|
|
3648
|
+
"fxprof-processed-profile",
|
|
3649
|
+
"indexmap",
|
|
3650
|
+
"libc",
|
|
3651
|
+
"log",
|
|
3652
|
+
"object 0.32.2",
|
|
3653
|
+
"once_cell",
|
|
3654
|
+
"paste",
|
|
3655
|
+
"rayon",
|
|
3656
|
+
"serde",
|
|
3657
|
+
"serde_derive",
|
|
3658
|
+
"serde_json",
|
|
3659
|
+
"target-lexicon",
|
|
3660
|
+
"wasm-encoder 0.38.1",
|
|
3661
|
+
"wasmparser 0.118.2",
|
|
3662
|
+
"wasmtime-cache",
|
|
3663
|
+
"wasmtime-component-macro",
|
|
3664
|
+
"wasmtime-component-util",
|
|
3665
|
+
"wasmtime-cranelift",
|
|
3666
|
+
"wasmtime-environ",
|
|
3667
|
+
"wasmtime-fiber",
|
|
3668
|
+
"wasmtime-jit",
|
|
3669
|
+
"wasmtime-runtime",
|
|
3670
|
+
"wasmtime-winch",
|
|
3671
|
+
"wat",
|
|
3672
|
+
"windows-sys 0.48.0",
|
|
3673
|
+
]
|
|
3674
|
+
|
|
3675
|
+
[[package]]
|
|
3676
|
+
name = "wasmtime-asm-macros"
|
|
3677
|
+
version = "16.0.0"
|
|
3678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
+
checksum = "660ba9143e15a2acd921820df221b73aee256bd3ca2d208d73d8adc9587ccbb9"
|
|
3680
|
+
dependencies = [
|
|
3681
|
+
"cfg-if",
|
|
3682
|
+
]
|
|
3683
|
+
|
|
3684
|
+
[[package]]
|
|
3685
|
+
name = "wasmtime-cache"
|
|
3686
|
+
version = "16.0.0"
|
|
3687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3688
|
+
checksum = "a3ce373743892002f9391c6741ef0cb0335b55ec899d874f311222b7e36f4594"
|
|
3689
|
+
dependencies = [
|
|
3690
|
+
"anyhow",
|
|
3691
|
+
"base64 0.21.7",
|
|
3692
|
+
"bincode",
|
|
3693
|
+
"directories-next",
|
|
3694
|
+
"log",
|
|
3695
|
+
"rustix 0.38.44",
|
|
3696
|
+
"serde",
|
|
3697
|
+
"serde_derive",
|
|
3698
|
+
"sha2",
|
|
3699
|
+
"toml 0.5.11",
|
|
3700
|
+
"windows-sys 0.48.0",
|
|
3701
|
+
"zstd",
|
|
3702
|
+
]
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "wasmtime-component-macro"
|
|
3706
|
+
version = "16.0.0"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "12ef32643324e564e1c359e9044daa06cbf90d7e2d6c99a738d17a12959f01a5"
|
|
3709
|
+
dependencies = [
|
|
3710
|
+
"anyhow",
|
|
3711
|
+
"proc-macro2",
|
|
3712
|
+
"quote",
|
|
3713
|
+
"syn",
|
|
3714
|
+
"wasmtime-component-util",
|
|
3715
|
+
"wasmtime-wit-bindgen",
|
|
3716
|
+
"wit-parser 0.13.2",
|
|
3717
|
+
]
|
|
3718
|
+
|
|
3719
|
+
[[package]]
|
|
3720
|
+
name = "wasmtime-component-util"
|
|
3721
|
+
version = "16.0.0"
|
|
3722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3723
|
+
checksum = "8c87d06c18d21a4818f354c00a85f4ebc62b2270961cd022968452b0e4dbed9d"
|
|
3724
|
+
|
|
3725
|
+
[[package]]
|
|
3726
|
+
name = "wasmtime-cranelift"
|
|
3727
|
+
version = "16.0.0"
|
|
3728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3729
|
+
checksum = "2d648c8b4064a7911093b02237cd5569f71ca171d3a0a486bf80600b19e1cba2"
|
|
3730
|
+
dependencies = [
|
|
3731
|
+
"anyhow",
|
|
3732
|
+
"cfg-if",
|
|
3733
|
+
"cranelift-codegen",
|
|
3734
|
+
"cranelift-control",
|
|
3735
|
+
"cranelift-entity",
|
|
3736
|
+
"cranelift-frontend",
|
|
3737
|
+
"cranelift-native",
|
|
3738
|
+
"cranelift-wasm",
|
|
3739
|
+
"gimli",
|
|
3740
|
+
"log",
|
|
3741
|
+
"object 0.32.2",
|
|
3742
|
+
"target-lexicon",
|
|
3743
|
+
"thiserror 1.0.69",
|
|
3744
|
+
"wasmparser 0.118.2",
|
|
3745
|
+
"wasmtime-cranelift-shared",
|
|
3746
|
+
"wasmtime-environ",
|
|
3747
|
+
"wasmtime-versioned-export-macros",
|
|
3748
|
+
]
|
|
3749
|
+
|
|
3750
|
+
[[package]]
|
|
3751
|
+
name = "wasmtime-cranelift-shared"
|
|
3752
|
+
version = "16.0.0"
|
|
3753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
+
checksum = "290a89027688782da8ff60b12bb95695494b1874e0d0ba2ba387d23dace6d70c"
|
|
3755
|
+
dependencies = [
|
|
3756
|
+
"anyhow",
|
|
3757
|
+
"cranelift-codegen",
|
|
3758
|
+
"cranelift-control",
|
|
3759
|
+
"cranelift-native",
|
|
3760
|
+
"gimli",
|
|
3761
|
+
"object 0.32.2",
|
|
3762
|
+
"target-lexicon",
|
|
3763
|
+
"wasmtime-environ",
|
|
3764
|
+
]
|
|
3765
|
+
|
|
3766
|
+
[[package]]
|
|
3767
|
+
name = "wasmtime-environ"
|
|
3768
|
+
version = "16.0.0"
|
|
3769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
+
checksum = "61eb64fb3e0da883e2df4a13a81d6282e072336e6cb6295021d0f7ab2e352754"
|
|
3771
|
+
dependencies = [
|
|
3772
|
+
"anyhow",
|
|
3773
|
+
"cranelift-entity",
|
|
3774
|
+
"gimli",
|
|
3775
|
+
"indexmap",
|
|
3776
|
+
"log",
|
|
3777
|
+
"object 0.32.2",
|
|
3778
|
+
"serde",
|
|
3779
|
+
"serde_derive",
|
|
3780
|
+
"target-lexicon",
|
|
3781
|
+
"thiserror 1.0.69",
|
|
3782
|
+
"wasm-encoder 0.38.1",
|
|
3783
|
+
"wasmparser 0.118.2",
|
|
3784
|
+
"wasmprinter",
|
|
3785
|
+
"wasmtime-component-util",
|
|
3786
|
+
"wasmtime-types",
|
|
3787
|
+
]
|
|
3788
|
+
|
|
3789
|
+
[[package]]
|
|
3790
|
+
name = "wasmtime-fiber"
|
|
3791
|
+
version = "16.0.0"
|
|
3792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3793
|
+
checksum = "40ecf1d3a838b0956b71ad3f8cb80069a228339775bf02dd35d86a5a68bbe443"
|
|
3794
|
+
dependencies = [
|
|
3795
|
+
"anyhow",
|
|
3796
|
+
"cc",
|
|
3797
|
+
"cfg-if",
|
|
3798
|
+
"rustix 0.38.44",
|
|
3799
|
+
"wasmtime-asm-macros",
|
|
3800
|
+
"wasmtime-versioned-export-macros",
|
|
3801
|
+
"windows-sys 0.48.0",
|
|
3802
|
+
]
|
|
3803
|
+
|
|
3804
|
+
[[package]]
|
|
3805
|
+
name = "wasmtime-jit"
|
|
3806
|
+
version = "16.0.0"
|
|
3807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3808
|
+
checksum = "f485336add49267d8859e8f8084d2d4b9a4b1564496b6f30ba5b168d50c10ceb"
|
|
3809
|
+
dependencies = [
|
|
3810
|
+
"addr2line",
|
|
3811
|
+
"anyhow",
|
|
3812
|
+
"bincode",
|
|
3813
|
+
"cfg-if",
|
|
3814
|
+
"cpp_demangle",
|
|
3815
|
+
"gimli",
|
|
3816
|
+
"ittapi",
|
|
3817
|
+
"log",
|
|
3818
|
+
"object 0.32.2",
|
|
3819
|
+
"rustc-demangle",
|
|
3820
|
+
"rustix 0.38.44",
|
|
3821
|
+
"serde",
|
|
3822
|
+
"serde_derive",
|
|
3823
|
+
"target-lexicon",
|
|
3824
|
+
"wasmtime-environ",
|
|
3825
|
+
"wasmtime-jit-debug",
|
|
3826
|
+
"wasmtime-jit-icache-coherence",
|
|
3827
|
+
"wasmtime-runtime",
|
|
3828
|
+
"windows-sys 0.48.0",
|
|
3829
|
+
]
|
|
3830
|
+
|
|
3831
|
+
[[package]]
|
|
3832
|
+
name = "wasmtime-jit-debug"
|
|
3833
|
+
version = "16.0.0"
|
|
3834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3835
|
+
checksum = "65e119affec40edb2fab9044f188759a00c2df9c3017278d047012a2de1efb4f"
|
|
3836
|
+
dependencies = [
|
|
3837
|
+
"object 0.32.2",
|
|
3838
|
+
"once_cell",
|
|
3839
|
+
"rustix 0.38.44",
|
|
3840
|
+
"wasmtime-versioned-export-macros",
|
|
3841
|
+
]
|
|
3842
|
+
|
|
3843
|
+
[[package]]
|
|
3844
|
+
name = "wasmtime-jit-icache-coherence"
|
|
3845
|
+
version = "16.0.0"
|
|
3846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
|
+
checksum = "6b6d197fcc34ad32ed440e1f9552fd57d1f377d9699d31dee1b5b457322c1f8a"
|
|
3848
|
+
dependencies = [
|
|
3849
|
+
"cfg-if",
|
|
3850
|
+
"libc",
|
|
3851
|
+
"windows-sys 0.48.0",
|
|
3852
|
+
]
|
|
3853
|
+
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "wasmtime-runtime"
|
|
3856
|
+
version = "16.0.0"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "794b2bb19b99ef8322ff0dd9fe1ba7e19c41036dfb260b3f99ecce128c42ff92"
|
|
3859
|
+
dependencies = [
|
|
3860
|
+
"anyhow",
|
|
3861
|
+
"cc",
|
|
3862
|
+
"cfg-if",
|
|
3863
|
+
"encoding_rs",
|
|
3864
|
+
"indexmap",
|
|
3865
|
+
"libc",
|
|
3866
|
+
"log",
|
|
3867
|
+
"mach",
|
|
3868
|
+
"memfd",
|
|
3869
|
+
"memoffset 0.9.1",
|
|
3870
|
+
"paste",
|
|
3871
|
+
"psm",
|
|
3872
|
+
"rustix 0.38.44",
|
|
3873
|
+
"sptr",
|
|
3874
|
+
"wasm-encoder 0.38.1",
|
|
3875
|
+
"wasmtime-asm-macros",
|
|
3876
|
+
"wasmtime-environ",
|
|
3877
|
+
"wasmtime-fiber",
|
|
3878
|
+
"wasmtime-jit-debug",
|
|
3879
|
+
"wasmtime-versioned-export-macros",
|
|
3880
|
+
"wasmtime-wmemcheck",
|
|
3881
|
+
"windows-sys 0.48.0",
|
|
3882
|
+
]
|
|
3883
|
+
|
|
3884
|
+
[[package]]
|
|
3885
|
+
name = "wasmtime-types"
|
|
3886
|
+
version = "16.0.0"
|
|
3887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3888
|
+
checksum = "d995db8bb56f2cd8d2dc0ed5ffab94ffb435283b0fe6747f80f7aab40b2d06a1"
|
|
3889
|
+
dependencies = [
|
|
3890
|
+
"cranelift-entity",
|
|
3891
|
+
"serde",
|
|
3892
|
+
"serde_derive",
|
|
3893
|
+
"thiserror 1.0.69",
|
|
3894
|
+
"wasmparser 0.118.2",
|
|
3895
|
+
]
|
|
3896
|
+
|
|
3897
|
+
[[package]]
|
|
3898
|
+
name = "wasmtime-versioned-export-macros"
|
|
3899
|
+
version = "16.0.0"
|
|
3900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3901
|
+
checksum = "f55c5565959287c21dd0f4277ae3518dd2ae62679f655ee2dbc4396e19d210db"
|
|
3902
|
+
dependencies = [
|
|
3903
|
+
"proc-macro2",
|
|
3904
|
+
"quote",
|
|
3905
|
+
"syn",
|
|
3906
|
+
]
|
|
3907
|
+
|
|
3908
|
+
[[package]]
|
|
3909
|
+
name = "wasmtime-wasi"
|
|
3910
|
+
version = "16.0.0"
|
|
3911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3912
|
+
checksum = "ccd8370078149d49a3a47e93741553fd79b700421464b6a27ca32718192ab130"
|
|
3913
|
+
dependencies = [
|
|
3914
|
+
"anyhow",
|
|
3915
|
+
"async-trait",
|
|
3916
|
+
"bitflags 2.11.0",
|
|
3917
|
+
"bytes",
|
|
3918
|
+
"cap-fs-ext",
|
|
3919
|
+
"cap-net-ext",
|
|
3920
|
+
"cap-rand",
|
|
3921
|
+
"cap-std",
|
|
3922
|
+
"cap-time-ext",
|
|
3923
|
+
"fs-set-times",
|
|
3924
|
+
"futures",
|
|
3925
|
+
"io-extras",
|
|
3926
|
+
"io-lifetimes",
|
|
3927
|
+
"libc",
|
|
3928
|
+
"log",
|
|
3929
|
+
"once_cell",
|
|
3930
|
+
"rustix 0.38.44",
|
|
3931
|
+
"system-interface",
|
|
3932
|
+
"thiserror 1.0.69",
|
|
3933
|
+
"tokio",
|
|
3934
|
+
"tracing",
|
|
3935
|
+
"url",
|
|
3936
|
+
"wasi-cap-std-sync",
|
|
3937
|
+
"wasi-common",
|
|
3938
|
+
"wasmtime",
|
|
3939
|
+
"wiggle",
|
|
3940
|
+
"windows-sys 0.48.0",
|
|
3941
|
+
]
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "wasmtime-winch"
|
|
3945
|
+
version = "16.0.0"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "2c6f945ff9bad96e0a69973d74f193c19f627c8adbf250e7cb73ae7564b6cc8a"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"anyhow",
|
|
3950
|
+
"cranelift-codegen",
|
|
3951
|
+
"gimli",
|
|
3952
|
+
"object 0.32.2",
|
|
3953
|
+
"target-lexicon",
|
|
3954
|
+
"wasmparser 0.118.2",
|
|
3955
|
+
"wasmtime-cranelift-shared",
|
|
3956
|
+
"wasmtime-environ",
|
|
3957
|
+
"winch-codegen",
|
|
3958
|
+
]
|
|
3959
|
+
|
|
3960
|
+
[[package]]
|
|
3961
|
+
name = "wasmtime-wit-bindgen"
|
|
3962
|
+
version = "16.0.0"
|
|
3963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
+
checksum = "f328b2d4a690270324756e886ed5be3a4da4c00be0eea48253f4595ad068062b"
|
|
3965
|
+
dependencies = [
|
|
3966
|
+
"anyhow",
|
|
3967
|
+
"heck 0.4.1",
|
|
3968
|
+
"indexmap",
|
|
3969
|
+
"wit-parser 0.13.2",
|
|
3970
|
+
]
|
|
3971
|
+
|
|
3972
|
+
[[package]]
|
|
3973
|
+
name = "wasmtime-wmemcheck"
|
|
3974
|
+
version = "16.0.0"
|
|
3975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
+
checksum = "67761d8f8c0b3c13a5d34356274b10a40baba67fe9cfabbfc379a8b414e45de2"
|
|
3977
|
+
|
|
3978
|
+
[[package]]
|
|
3979
|
+
name = "wast"
|
|
3980
|
+
version = "35.0.2"
|
|
3981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
+
checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
|
|
3983
|
+
dependencies = [
|
|
3984
|
+
"leb128",
|
|
3985
|
+
]
|
|
3986
|
+
|
|
3987
|
+
[[package]]
|
|
3988
|
+
name = "wast"
|
|
3989
|
+
version = "245.0.1"
|
|
3990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3991
|
+
checksum = "28cf1149285569120b8ce39db8b465e8a2b55c34cbb586bd977e43e2bc7300bf"
|
|
3992
|
+
dependencies = [
|
|
3993
|
+
"bumpalo",
|
|
3994
|
+
"leb128fmt",
|
|
3995
|
+
"memchr",
|
|
3996
|
+
"unicode-width",
|
|
3997
|
+
"wasm-encoder 0.245.1",
|
|
3998
|
+
]
|
|
3999
|
+
|
|
4000
|
+
[[package]]
|
|
4001
|
+
name = "wat"
|
|
4002
|
+
version = "1.245.1"
|
|
4003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
|
+
checksum = "cd48d1679b6858988cb96b154dda0ec5bbb09275b71db46057be37332d5477be"
|
|
4005
|
+
dependencies = [
|
|
4006
|
+
"wast 245.0.1",
|
|
4007
|
+
]
|
|
4008
|
+
|
|
4009
|
+
[[package]]
|
|
4010
|
+
name = "web-time"
|
|
4011
|
+
version = "1.1.0"
|
|
4012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4013
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4014
|
+
dependencies = [
|
|
4015
|
+
"js-sys",
|
|
4016
|
+
"wasm-bindgen",
|
|
4017
|
+
]
|
|
4018
|
+
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "webpki-root-certs"
|
|
4021
|
+
version = "1.0.6"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
|
|
4024
|
+
dependencies = [
|
|
4025
|
+
"rustls-pki-types",
|
|
4026
|
+
]
|
|
4027
|
+
|
|
4028
|
+
[[package]]
|
|
4029
|
+
name = "wiggle"
|
|
4030
|
+
version = "16.0.0"
|
|
4031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4032
|
+
checksum = "0afb26cd3269289bb314a361ff0a6685e5ce793b62181a9fe3f81ace15051697"
|
|
4033
|
+
dependencies = [
|
|
4034
|
+
"anyhow",
|
|
4035
|
+
"async-trait",
|
|
4036
|
+
"bitflags 2.11.0",
|
|
4037
|
+
"thiserror 1.0.69",
|
|
4038
|
+
"tracing",
|
|
4039
|
+
"wasmtime",
|
|
4040
|
+
"wiggle-macro",
|
|
4041
|
+
]
|
|
4042
|
+
|
|
4043
|
+
[[package]]
|
|
4044
|
+
name = "wiggle-generate"
|
|
4045
|
+
version = "16.0.0"
|
|
4046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4047
|
+
checksum = "cef2868fed7584d2b552fa317104858ded80021d23b073b2d682d3c932a027bd"
|
|
4048
|
+
dependencies = [
|
|
4049
|
+
"anyhow",
|
|
4050
|
+
"heck 0.4.1",
|
|
4051
|
+
"proc-macro2",
|
|
4052
|
+
"quote",
|
|
4053
|
+
"shellexpand",
|
|
4054
|
+
"syn",
|
|
4055
|
+
"witx",
|
|
4056
|
+
]
|
|
4057
|
+
|
|
4058
|
+
[[package]]
|
|
4059
|
+
name = "wiggle-macro"
|
|
4060
|
+
version = "16.0.0"
|
|
4061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
+
checksum = "31ae1ec11a17ea481539ee9a5719a278c9790d974060fbf71db4b2c05378780b"
|
|
4063
|
+
dependencies = [
|
|
4064
|
+
"proc-macro2",
|
|
4065
|
+
"quote",
|
|
4066
|
+
"syn",
|
|
4067
|
+
"wiggle-generate",
|
|
4068
|
+
]
|
|
4069
|
+
|
|
4070
|
+
[[package]]
|
|
4071
|
+
name = "win-sys"
|
|
4072
|
+
version = "0.3.1"
|
|
4073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4074
|
+
checksum = "5b7b128a98c1cfa201b09eb49ba285887deb3cbe7466a98850eb1adabb452be5"
|
|
4075
|
+
dependencies = [
|
|
4076
|
+
"windows",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "winapi"
|
|
4081
|
+
version = "0.3.9"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"winapi-i686-pc-windows-gnu",
|
|
4086
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4087
|
+
]
|
|
4088
|
+
|
|
4089
|
+
[[package]]
|
|
4090
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4091
|
+
version = "0.4.0"
|
|
4092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4093
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4094
|
+
|
|
4095
|
+
[[package]]
|
|
4096
|
+
name = "winapi-util"
|
|
4097
|
+
version = "0.1.11"
|
|
4098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4100
|
+
dependencies = [
|
|
4101
|
+
"windows-sys 0.61.2",
|
|
4102
|
+
]
|
|
4103
|
+
|
|
4104
|
+
[[package]]
|
|
4105
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4106
|
+
version = "0.4.0"
|
|
4107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4108
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4109
|
+
|
|
4110
|
+
[[package]]
|
|
4111
|
+
name = "winch-codegen"
|
|
4112
|
+
version = "0.14.0"
|
|
4113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4114
|
+
checksum = "58e58c236a6abdd9ab454552b4f29e16cfa837a86897c1503313b2e62e7609ec"
|
|
4115
|
+
dependencies = [
|
|
4116
|
+
"anyhow",
|
|
4117
|
+
"cranelift-codegen",
|
|
4118
|
+
"gimli",
|
|
4119
|
+
"regalloc2",
|
|
4120
|
+
"smallvec",
|
|
4121
|
+
"target-lexicon",
|
|
4122
|
+
"wasmparser 0.118.2",
|
|
4123
|
+
"wasmtime-environ",
|
|
4124
|
+
]
|
|
4125
|
+
|
|
4126
|
+
[[package]]
|
|
4127
|
+
name = "windows"
|
|
4128
|
+
version = "0.34.0"
|
|
4129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4130
|
+
checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f"
|
|
4131
|
+
dependencies = [
|
|
4132
|
+
"windows_aarch64_msvc 0.34.0",
|
|
4133
|
+
"windows_i686_gnu 0.34.0",
|
|
4134
|
+
"windows_i686_msvc 0.34.0",
|
|
4135
|
+
"windows_x86_64_gnu 0.34.0",
|
|
4136
|
+
"windows_x86_64_msvc 0.34.0",
|
|
4137
|
+
]
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "windows-core"
|
|
4141
|
+
version = "0.62.2"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4144
|
+
dependencies = [
|
|
4145
|
+
"windows-implement",
|
|
4146
|
+
"windows-interface",
|
|
4147
|
+
"windows-link",
|
|
4148
|
+
"windows-result",
|
|
4149
|
+
"windows-strings",
|
|
4150
|
+
]
|
|
4151
|
+
|
|
4152
|
+
[[package]]
|
|
4153
|
+
name = "windows-implement"
|
|
4154
|
+
version = "0.60.2"
|
|
4155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4157
|
+
dependencies = [
|
|
4158
|
+
"proc-macro2",
|
|
4159
|
+
"quote",
|
|
4160
|
+
"syn",
|
|
4161
|
+
]
|
|
4162
|
+
|
|
4163
|
+
[[package]]
|
|
4164
|
+
name = "windows-interface"
|
|
4165
|
+
version = "0.59.3"
|
|
4166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4167
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4168
|
+
dependencies = [
|
|
4169
|
+
"proc-macro2",
|
|
4170
|
+
"quote",
|
|
4171
|
+
"syn",
|
|
4172
|
+
]
|
|
4173
|
+
|
|
4174
|
+
[[package]]
|
|
4175
|
+
name = "windows-link"
|
|
4176
|
+
version = "0.2.1"
|
|
4177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4179
|
+
|
|
4180
|
+
[[package]]
|
|
4181
|
+
name = "windows-result"
|
|
4182
|
+
version = "0.4.1"
|
|
4183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4185
|
+
dependencies = [
|
|
4186
|
+
"windows-link",
|
|
4187
|
+
]
|
|
4188
|
+
|
|
4189
|
+
[[package]]
|
|
4190
|
+
name = "windows-strings"
|
|
4191
|
+
version = "0.5.1"
|
|
4192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4193
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4194
|
+
dependencies = [
|
|
4195
|
+
"windows-link",
|
|
4196
|
+
]
|
|
4197
|
+
|
|
4198
|
+
[[package]]
|
|
4199
|
+
name = "windows-sys"
|
|
4200
|
+
version = "0.48.0"
|
|
4201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4203
|
+
dependencies = [
|
|
4204
|
+
"windows-targets 0.48.5",
|
|
4205
|
+
]
|
|
4206
|
+
|
|
4207
|
+
[[package]]
|
|
4208
|
+
name = "windows-sys"
|
|
4209
|
+
version = "0.52.0"
|
|
4210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4211
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4212
|
+
dependencies = [
|
|
4213
|
+
"windows-targets 0.52.6",
|
|
4214
|
+
]
|
|
4215
|
+
|
|
4216
|
+
[[package]]
|
|
4217
|
+
name = "windows-sys"
|
|
4218
|
+
version = "0.59.0"
|
|
4219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4221
|
+
dependencies = [
|
|
4222
|
+
"windows-targets 0.52.6",
|
|
4223
|
+
]
|
|
4224
|
+
|
|
4225
|
+
[[package]]
|
|
4226
|
+
name = "windows-sys"
|
|
4227
|
+
version = "0.61.2"
|
|
4228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4229
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4230
|
+
dependencies = [
|
|
4231
|
+
"windows-link",
|
|
4232
|
+
]
|
|
4233
|
+
|
|
4234
|
+
[[package]]
|
|
4235
|
+
name = "windows-targets"
|
|
4236
|
+
version = "0.48.5"
|
|
4237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4238
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4239
|
+
dependencies = [
|
|
4240
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4241
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4242
|
+
"windows_i686_gnu 0.48.5",
|
|
4243
|
+
"windows_i686_msvc 0.48.5",
|
|
4244
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4245
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4246
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4247
|
+
]
|
|
4248
|
+
|
|
4249
|
+
[[package]]
|
|
4250
|
+
name = "windows-targets"
|
|
4251
|
+
version = "0.52.6"
|
|
4252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4253
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4254
|
+
dependencies = [
|
|
4255
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4256
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4257
|
+
"windows_i686_gnu 0.52.6",
|
|
4258
|
+
"windows_i686_gnullvm",
|
|
4259
|
+
"windows_i686_msvc 0.52.6",
|
|
4260
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4261
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4262
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4263
|
+
]
|
|
4264
|
+
|
|
4265
|
+
[[package]]
|
|
4266
|
+
name = "windows_aarch64_gnullvm"
|
|
4267
|
+
version = "0.48.5"
|
|
4268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4269
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4270
|
+
|
|
4271
|
+
[[package]]
|
|
4272
|
+
name = "windows_aarch64_gnullvm"
|
|
4273
|
+
version = "0.52.6"
|
|
4274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4275
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4276
|
+
|
|
4277
|
+
[[package]]
|
|
4278
|
+
name = "windows_aarch64_msvc"
|
|
4279
|
+
version = "0.34.0"
|
|
4280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4281
|
+
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
|
|
4282
|
+
|
|
4283
|
+
[[package]]
|
|
4284
|
+
name = "windows_aarch64_msvc"
|
|
4285
|
+
version = "0.48.5"
|
|
4286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4287
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
4288
|
+
|
|
4289
|
+
[[package]]
|
|
4290
|
+
name = "windows_aarch64_msvc"
|
|
4291
|
+
version = "0.52.6"
|
|
4292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4293
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4294
|
+
|
|
4295
|
+
[[package]]
|
|
4296
|
+
name = "windows_i686_gnu"
|
|
4297
|
+
version = "0.34.0"
|
|
4298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4299
|
+
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
|
|
4300
|
+
|
|
4301
|
+
[[package]]
|
|
4302
|
+
name = "windows_i686_gnu"
|
|
4303
|
+
version = "0.48.5"
|
|
4304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4305
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
4306
|
+
|
|
4307
|
+
[[package]]
|
|
4308
|
+
name = "windows_i686_gnu"
|
|
4309
|
+
version = "0.52.6"
|
|
4310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4312
|
+
|
|
4313
|
+
[[package]]
|
|
4314
|
+
name = "windows_i686_gnullvm"
|
|
4315
|
+
version = "0.52.6"
|
|
4316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4317
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4318
|
+
|
|
4319
|
+
[[package]]
|
|
4320
|
+
name = "windows_i686_msvc"
|
|
4321
|
+
version = "0.34.0"
|
|
4322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4323
|
+
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
|
|
4324
|
+
|
|
4325
|
+
[[package]]
|
|
4326
|
+
name = "windows_i686_msvc"
|
|
4327
|
+
version = "0.48.5"
|
|
4328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
4330
|
+
|
|
4331
|
+
[[package]]
|
|
4332
|
+
name = "windows_i686_msvc"
|
|
4333
|
+
version = "0.52.6"
|
|
4334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4335
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4336
|
+
|
|
4337
|
+
[[package]]
|
|
4338
|
+
name = "windows_x86_64_gnu"
|
|
4339
|
+
version = "0.34.0"
|
|
4340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
+
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
|
|
4342
|
+
|
|
4343
|
+
[[package]]
|
|
4344
|
+
name = "windows_x86_64_gnu"
|
|
4345
|
+
version = "0.48.5"
|
|
4346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4347
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
4348
|
+
|
|
4349
|
+
[[package]]
|
|
4350
|
+
name = "windows_x86_64_gnu"
|
|
4351
|
+
version = "0.52.6"
|
|
4352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4353
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4354
|
+
|
|
4355
|
+
[[package]]
|
|
4356
|
+
name = "windows_x86_64_gnullvm"
|
|
4357
|
+
version = "0.48.5"
|
|
4358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4359
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
4360
|
+
|
|
4361
|
+
[[package]]
|
|
4362
|
+
name = "windows_x86_64_gnullvm"
|
|
4363
|
+
version = "0.52.6"
|
|
4364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4365
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4366
|
+
|
|
4367
|
+
[[package]]
|
|
4368
|
+
name = "windows_x86_64_msvc"
|
|
4369
|
+
version = "0.34.0"
|
|
4370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4371
|
+
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
|
|
4372
|
+
|
|
4373
|
+
[[package]]
|
|
4374
|
+
name = "windows_x86_64_msvc"
|
|
4375
|
+
version = "0.48.5"
|
|
4376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4377
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
4378
|
+
|
|
4379
|
+
[[package]]
|
|
4380
|
+
name = "windows_x86_64_msvc"
|
|
4381
|
+
version = "0.52.6"
|
|
4382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4384
|
+
|
|
4385
|
+
[[package]]
|
|
4386
|
+
name = "winnow"
|
|
4387
|
+
version = "0.7.15"
|
|
4388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4389
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
4390
|
+
dependencies = [
|
|
4391
|
+
"memchr",
|
|
4392
|
+
]
|
|
4393
|
+
|
|
4394
|
+
[[package]]
|
|
4395
|
+
name = "winx"
|
|
4396
|
+
version = "0.36.4"
|
|
4397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4398
|
+
checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
|
|
4399
|
+
dependencies = [
|
|
4400
|
+
"bitflags 2.11.0",
|
|
4401
|
+
"windows-sys 0.59.0",
|
|
4402
|
+
]
|
|
4403
|
+
|
|
4404
|
+
[[package]]
|
|
4405
|
+
name = "wit-bindgen"
|
|
4406
|
+
version = "0.51.0"
|
|
4407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4408
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4409
|
+
dependencies = [
|
|
4410
|
+
"wit-bindgen-rust-macro",
|
|
4411
|
+
]
|
|
4412
|
+
|
|
4413
|
+
[[package]]
|
|
4414
|
+
name = "wit-bindgen-core"
|
|
4415
|
+
version = "0.51.0"
|
|
4416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4417
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4418
|
+
dependencies = [
|
|
4419
|
+
"anyhow",
|
|
4420
|
+
"heck 0.5.0",
|
|
4421
|
+
"wit-parser 0.244.0",
|
|
4422
|
+
]
|
|
4423
|
+
|
|
4424
|
+
[[package]]
|
|
4425
|
+
name = "wit-bindgen-rust"
|
|
4426
|
+
version = "0.51.0"
|
|
4427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4428
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4429
|
+
dependencies = [
|
|
4430
|
+
"anyhow",
|
|
4431
|
+
"heck 0.5.0",
|
|
4432
|
+
"indexmap",
|
|
4433
|
+
"prettyplease",
|
|
4434
|
+
"syn",
|
|
4435
|
+
"wasm-metadata",
|
|
4436
|
+
"wit-bindgen-core",
|
|
4437
|
+
"wit-component",
|
|
4438
|
+
]
|
|
4439
|
+
|
|
4440
|
+
[[package]]
|
|
4441
|
+
name = "wit-bindgen-rust-macro"
|
|
4442
|
+
version = "0.51.0"
|
|
4443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4444
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4445
|
+
dependencies = [
|
|
4446
|
+
"anyhow",
|
|
4447
|
+
"prettyplease",
|
|
4448
|
+
"proc-macro2",
|
|
4449
|
+
"quote",
|
|
4450
|
+
"syn",
|
|
4451
|
+
"wit-bindgen-core",
|
|
4452
|
+
"wit-bindgen-rust",
|
|
4453
|
+
]
|
|
4454
|
+
|
|
4455
|
+
[[package]]
|
|
4456
|
+
name = "wit-component"
|
|
4457
|
+
version = "0.244.0"
|
|
4458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4459
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4460
|
+
dependencies = [
|
|
4461
|
+
"anyhow",
|
|
4462
|
+
"bitflags 2.11.0",
|
|
4463
|
+
"indexmap",
|
|
4464
|
+
"log",
|
|
4465
|
+
"serde",
|
|
4466
|
+
"serde_derive",
|
|
4467
|
+
"serde_json",
|
|
4468
|
+
"wasm-encoder 0.244.0",
|
|
4469
|
+
"wasm-metadata",
|
|
4470
|
+
"wasmparser 0.244.0",
|
|
4471
|
+
"wit-parser 0.244.0",
|
|
4472
|
+
]
|
|
4473
|
+
|
|
4474
|
+
[[package]]
|
|
4475
|
+
name = "wit-parser"
|
|
4476
|
+
version = "0.13.2"
|
|
4477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4478
|
+
checksum = "316b36a9f0005f5aa4b03c39bc3728d045df136f8c13a73b7db4510dec725e08"
|
|
4479
|
+
dependencies = [
|
|
4480
|
+
"anyhow",
|
|
4481
|
+
"id-arena",
|
|
4482
|
+
"indexmap",
|
|
4483
|
+
"log",
|
|
4484
|
+
"semver",
|
|
4485
|
+
"serde",
|
|
4486
|
+
"serde_derive",
|
|
4487
|
+
"serde_json",
|
|
4488
|
+
"unicode-xid",
|
|
4489
|
+
]
|
|
4490
|
+
|
|
4491
|
+
[[package]]
|
|
4492
|
+
name = "wit-parser"
|
|
4493
|
+
version = "0.244.0"
|
|
4494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4495
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4496
|
+
dependencies = [
|
|
4497
|
+
"anyhow",
|
|
4498
|
+
"id-arena",
|
|
4499
|
+
"indexmap",
|
|
4500
|
+
"log",
|
|
4501
|
+
"semver",
|
|
4502
|
+
"serde",
|
|
4503
|
+
"serde_derive",
|
|
4504
|
+
"serde_json",
|
|
4505
|
+
"unicode-xid",
|
|
4506
|
+
"wasmparser 0.244.0",
|
|
4507
|
+
]
|
|
4508
|
+
|
|
4509
|
+
[[package]]
|
|
4510
|
+
name = "witx"
|
|
4511
|
+
version = "0.9.1"
|
|
4512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4513
|
+
checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
4514
|
+
dependencies = [
|
|
4515
|
+
"anyhow",
|
|
4516
|
+
"log",
|
|
4517
|
+
"thiserror 1.0.69",
|
|
4518
|
+
"wast 35.0.2",
|
|
4519
|
+
]
|
|
4520
|
+
|
|
4521
|
+
[[package]]
|
|
4522
|
+
name = "wrapcenum-derive"
|
|
4523
|
+
version = "0.4.1"
|
|
4524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4525
|
+
checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e"
|
|
4526
|
+
dependencies = [
|
|
4527
|
+
"darling",
|
|
4528
|
+
"proc-macro2",
|
|
4529
|
+
"quote",
|
|
4530
|
+
"syn",
|
|
4531
|
+
]
|
|
4532
|
+
|
|
4533
|
+
[[package]]
|
|
4534
|
+
name = "writeable"
|
|
4535
|
+
version = "0.6.2"
|
|
4536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4537
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4538
|
+
|
|
4539
|
+
[[package]]
|
|
4540
|
+
name = "xattr"
|
|
4541
|
+
version = "1.6.1"
|
|
4542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4543
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
4544
|
+
dependencies = [
|
|
4545
|
+
"libc",
|
|
4546
|
+
"rustix 1.1.4",
|
|
4547
|
+
]
|
|
4548
|
+
|
|
4549
|
+
[[package]]
|
|
4550
|
+
name = "yoke"
|
|
4551
|
+
version = "0.8.1"
|
|
4552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4553
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4554
|
+
dependencies = [
|
|
4555
|
+
"stable_deref_trait",
|
|
4556
|
+
"yoke-derive",
|
|
4557
|
+
"zerofrom",
|
|
4558
|
+
]
|
|
4559
|
+
|
|
4560
|
+
[[package]]
|
|
4561
|
+
name = "yoke-derive"
|
|
4562
|
+
version = "0.8.1"
|
|
4563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4564
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4565
|
+
dependencies = [
|
|
4566
|
+
"proc-macro2",
|
|
4567
|
+
"quote",
|
|
4568
|
+
"syn",
|
|
4569
|
+
"synstructure",
|
|
4570
|
+
]
|
|
4571
|
+
|
|
4572
|
+
[[package]]
|
|
4573
|
+
name = "zerocopy"
|
|
4574
|
+
version = "0.8.42"
|
|
4575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4576
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
4577
|
+
dependencies = [
|
|
4578
|
+
"zerocopy-derive",
|
|
4579
|
+
]
|
|
4580
|
+
|
|
4581
|
+
[[package]]
|
|
4582
|
+
name = "zerocopy-derive"
|
|
4583
|
+
version = "0.8.42"
|
|
4584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4585
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
4586
|
+
dependencies = [
|
|
4587
|
+
"proc-macro2",
|
|
4588
|
+
"quote",
|
|
4589
|
+
"syn",
|
|
4590
|
+
]
|
|
4591
|
+
|
|
4592
|
+
[[package]]
|
|
4593
|
+
name = "zerofrom"
|
|
4594
|
+
version = "0.1.6"
|
|
4595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4596
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4597
|
+
dependencies = [
|
|
4598
|
+
"zerofrom-derive",
|
|
4599
|
+
]
|
|
4600
|
+
|
|
4601
|
+
[[package]]
|
|
4602
|
+
name = "zerofrom-derive"
|
|
4603
|
+
version = "0.1.6"
|
|
4604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4605
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4606
|
+
dependencies = [
|
|
4607
|
+
"proc-macro2",
|
|
4608
|
+
"quote",
|
|
4609
|
+
"syn",
|
|
4610
|
+
"synstructure",
|
|
4611
|
+
]
|
|
4612
|
+
|
|
4613
|
+
[[package]]
|
|
4614
|
+
name = "zeroize"
|
|
4615
|
+
version = "1.8.2"
|
|
4616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4617
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4618
|
+
|
|
4619
|
+
[[package]]
|
|
4620
|
+
name = "zerotrie"
|
|
4621
|
+
version = "0.2.3"
|
|
4622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4623
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4624
|
+
dependencies = [
|
|
4625
|
+
"displaydoc",
|
|
4626
|
+
"yoke",
|
|
4627
|
+
"zerofrom",
|
|
4628
|
+
]
|
|
4629
|
+
|
|
4630
|
+
[[package]]
|
|
4631
|
+
name = "zerovec"
|
|
4632
|
+
version = "0.11.5"
|
|
4633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4634
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4635
|
+
dependencies = [
|
|
4636
|
+
"yoke",
|
|
4637
|
+
"zerofrom",
|
|
4638
|
+
"zerovec-derive",
|
|
4639
|
+
]
|
|
4640
|
+
|
|
4641
|
+
[[package]]
|
|
4642
|
+
name = "zerovec-derive"
|
|
4643
|
+
version = "0.11.2"
|
|
4644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4645
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4646
|
+
dependencies = [
|
|
4647
|
+
"proc-macro2",
|
|
4648
|
+
"quote",
|
|
4649
|
+
"syn",
|
|
4650
|
+
]
|
|
4651
|
+
|
|
4652
|
+
[[package]]
|
|
4653
|
+
name = "zmij"
|
|
4654
|
+
version = "1.0.21"
|
|
4655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4656
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
4657
|
+
|
|
4658
|
+
[[package]]
|
|
4659
|
+
name = "zstd"
|
|
4660
|
+
version = "0.11.2+zstd.1.5.2"
|
|
4661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4662
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
4663
|
+
dependencies = [
|
|
4664
|
+
"zstd-safe",
|
|
4665
|
+
]
|
|
4666
|
+
|
|
4667
|
+
[[package]]
|
|
4668
|
+
name = "zstd-safe"
|
|
4669
|
+
version = "5.0.2+zstd.1.5.2"
|
|
4670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4671
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
4672
|
+
dependencies = [
|
|
4673
|
+
"libc",
|
|
4674
|
+
"zstd-sys",
|
|
4675
|
+
]
|
|
4676
|
+
|
|
4677
|
+
[[package]]
|
|
4678
|
+
name = "zstd-sys"
|
|
4679
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4681
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4682
|
+
dependencies = [
|
|
4683
|
+
"cc",
|
|
4684
|
+
"pkg-config",
|
|
4685
|
+
]
|