pyeryx 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.
- pyeryx-0.1.0/Cargo.lock +3828 -0
- pyeryx-0.1.0/Cargo.toml +110 -0
- pyeryx-0.1.0/PKG-INFO +220 -0
- pyeryx-0.1.0/README.md +194 -0
- pyeryx-0.1.0/crates/eryx/Cargo.toml +151 -0
- pyeryx-0.1.0/crates/eryx/README.md +148 -0
- pyeryx-0.1.0/crates/eryx/benches/execution.rs +461 -0
- pyeryx-0.1.0/crates/eryx/build.rs +42 -0
- pyeryx-0.1.0/crates/eryx/examples/custom_library.rs +509 -0
- pyeryx-0.1.0/crates/eryx/examples/embedded_runtime.rs +75 -0
- pyeryx-0.1.0/crates/eryx/examples/error_handling.rs +310 -0
- pyeryx-0.1.0/crates/eryx/examples/jinja2_sandbox.rs +439 -0
- pyeryx-0.1.0/crates/eryx/examples/memory_bench.rs +412 -0
- pyeryx-0.1.0/crates/eryx/examples/numpy_native.rs +221 -0
- pyeryx-0.1.0/crates/eryx/examples/numpy_preinit.rs +220 -0
- pyeryx-0.1.0/crates/eryx/examples/package_loading.rs +108 -0
- pyeryx-0.1.0/crates/eryx/examples/parallel_callbacks.rs +170 -0
- pyeryx-0.1.0/crates/eryx/examples/precompile.rs +234 -0
- pyeryx-0.1.0/crates/eryx/examples/profile_execution.rs +60 -0
- pyeryx-0.1.0/crates/eryx/examples/resource_limits.rs +272 -0
- pyeryx-0.1.0/crates/eryx/examples/runtime_callbacks.rs +255 -0
- pyeryx-0.1.0/crates/eryx/examples/session_bench.rs +148 -0
- pyeryx-0.1.0/crates/eryx/examples/session_reuse.rs +300 -0
- pyeryx-0.1.0/crates/eryx/examples/simple.rs +199 -0
- pyeryx-0.1.0/crates/eryx/examples/trace_events.rs +751 -0
- pyeryx-0.1.0/crates/eryx/examples/with_tracing.rs +207 -0
- pyeryx-0.1.0/crates/eryx/python-stdlib.tar.zst +0 -0
- pyeryx-0.1.0/crates/eryx/src/cache.rs +603 -0
- pyeryx-0.1.0/crates/eryx/src/callback.rs +1241 -0
- pyeryx-0.1.0/crates/eryx/src/callback_handler.rs +159 -0
- pyeryx-0.1.0/crates/eryx/src/embedded.rs +243 -0
- pyeryx-0.1.0/crates/eryx/src/error.rs +63 -0
- pyeryx-0.1.0/crates/eryx/src/lib.rs +90 -0
- pyeryx-0.1.0/crates/eryx/src/library.rs +418 -0
- pyeryx-0.1.0/crates/eryx/src/package.rs +419 -0
- pyeryx-0.1.0/crates/eryx/src/sandbox.rs +1937 -0
- pyeryx-0.1.0/crates/eryx/src/schema.rs +250 -0
- pyeryx-0.1.0/crates/eryx/src/session/executor.rs +828 -0
- pyeryx-0.1.0/crates/eryx/src/session/in_process.rs +258 -0
- pyeryx-0.1.0/crates/eryx/src/session/mod.rs +139 -0
- pyeryx-0.1.0/crates/eryx/src/trace.rs +105 -0
- pyeryx-0.1.0/crates/eryx/src/wasm.rs +1001 -0
- pyeryx-0.1.0/crates/eryx/tests/embedded_and_packages.rs +284 -0
- pyeryx-0.1.0/crates/eryx/tests/error_handling.rs +449 -0
- pyeryx-0.1.0/crates/eryx/tests/preinit.rs +287 -0
- pyeryx-0.1.0/crates/eryx/tests/sandbox_callbacks.rs +975 -0
- pyeryx-0.1.0/crates/eryx/tests/session_state_persistence.rs +527 -0
- pyeryx-0.1.0/crates/eryx/tests/trace_events_precise.rs +746 -0
- pyeryx-0.1.0/crates/eryx/tests/trace_output_handlers.rs +823 -0
- pyeryx-0.1.0/crates/eryx-python/Cargo.toml +29 -0
- pyeryx-0.1.0/crates/eryx-python/README.md +194 -0
- pyeryx-0.1.0/crates/eryx-python/build.rs +7 -0
- pyeryx-0.1.0/crates/eryx-python/examples/error_handling.py +99 -0
- pyeryx-0.1.0/crates/eryx-python/examples/jinja2_preinit.py +238 -0
- pyeryx-0.1.0/crates/eryx-python/examples/jinja2_sandbox.py +223 -0
- pyeryx-0.1.0/crates/eryx-python/examples/resource_limits.py +82 -0
- pyeryx-0.1.0/crates/eryx-python/examples/simple.py +91 -0
- pyeryx-0.1.0/crates/eryx-python/python/eryx/__init__.py +58 -0
- pyeryx-0.1.0/crates/eryx-python/python/eryx/_eryx.pyi +357 -0
- pyeryx-0.1.0/crates/eryx-python/python/eryx/py.typed +0 -0
- pyeryx-0.1.0/crates/eryx-python/src/error.rs +88 -0
- pyeryx-0.1.0/crates/eryx-python/src/lib.rs +63 -0
- pyeryx-0.1.0/crates/eryx-python/src/preinit.rs +383 -0
- pyeryx-0.1.0/crates/eryx-python/src/resource_limits.rs +105 -0
- pyeryx-0.1.0/crates/eryx-python/src/result.rs +66 -0
- pyeryx-0.1.0/crates/eryx-python/src/sandbox.rs +196 -0
- pyeryx-0.1.0/crates/eryx-python/tests/test_sandbox.py +476 -0
- pyeryx-0.1.0/crates/eryx-runtime/Cargo.toml +73 -0
- pyeryx-0.1.0/crates/eryx-runtime/README.md +87 -0
- pyeryx-0.1.0/crates/eryx-runtime/build.rs +413 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libc++.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libc++abi.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libc.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libpython3.14.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libwasi-emulated-getpid.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libwasi-emulated-mman.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libwasi-emulated-process-clocks.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/libwasi-emulated-signal.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/libs/wasi_snapshot_preview1.reactor.wasm.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/prebuilt/liberyx_bindings.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/prebuilt/liberyx_runtime.so.zst +0 -0
- pyeryx-0.1.0/crates/eryx-runtime/runtime.wit +98 -0
- pyeryx-0.1.0/crates/eryx-runtime/src/lib.rs +40 -0
- pyeryx-0.1.0/crates/eryx-runtime/src/linker.rs +385 -0
- pyeryx-0.1.0/crates/eryx-runtime/src/preinit.rs +490 -0
- pyeryx-0.1.0/crates/eryx-runtime/src/stubwasi.rs +353 -0
- pyeryx-0.1.0/pyproject.toml +36 -0
- pyeryx-0.1.0/python/eryx/__init__.py +58 -0
- pyeryx-0.1.0/python/eryx/_eryx.pyi +357 -0
- pyeryx-0.1.0/python/eryx/py.typed +0 -0
pyeryx-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,3828 @@
|
|
|
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.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
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 = "aes"
|
|
22
|
+
version = "0.8.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"cipher",
|
|
28
|
+
"cpufeatures",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "aho-corasick"
|
|
33
|
+
version = "1.1.4"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"memchr",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "allocator-api2"
|
|
42
|
+
version = "0.2.21"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "ambient-authority"
|
|
48
|
+
version = "0.0.2"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "android_system_properties"
|
|
54
|
+
version = "0.1.5"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"libc",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anes"
|
|
63
|
+
version = "0.1.6"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "anstyle"
|
|
69
|
+
version = "1.0.13"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "anyhow"
|
|
75
|
+
version = "1.0.100"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "arbitrary"
|
|
81
|
+
version = "1.4.2"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"derive_arbitrary",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "async-trait"
|
|
90
|
+
version = "0.1.89"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"proc-macro2",
|
|
95
|
+
"quote",
|
|
96
|
+
"syn",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "auditable-serde"
|
|
101
|
+
version = "0.8.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "5c7bf8143dfc3c0258df908843e169b5cc5fcf76c7718bd66135ef4a9cd558c5"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"semver",
|
|
106
|
+
"serde",
|
|
107
|
+
"serde_json",
|
|
108
|
+
"topological-sort",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "autocfg"
|
|
113
|
+
version = "1.5.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "base64"
|
|
119
|
+
version = "0.22.1"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "bitflags"
|
|
125
|
+
version = "2.10.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "bitmaps"
|
|
131
|
+
version = "2.1.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"typenum",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "block-buffer"
|
|
140
|
+
version = "0.10.4"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"generic-array",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "bumpalo"
|
|
149
|
+
version = "3.19.0"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"allocator-api2",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "byteorder"
|
|
158
|
+
version = "1.5.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "bytes"
|
|
164
|
+
version = "1.11.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "bzip2"
|
|
170
|
+
version = "0.5.2"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"bzip2-sys",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "bzip2-sys"
|
|
179
|
+
version = "0.1.13+1.0.8"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"cc",
|
|
184
|
+
"pkg-config",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "cap-fs-ext"
|
|
189
|
+
version = "3.4.5"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"cap-primitives",
|
|
194
|
+
"cap-std",
|
|
195
|
+
"io-lifetimes",
|
|
196
|
+
"windows-sys 0.59.0",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "cap-net-ext"
|
|
201
|
+
version = "3.4.5"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"cap-primitives",
|
|
206
|
+
"cap-std",
|
|
207
|
+
"rustix 1.1.2",
|
|
208
|
+
"smallvec",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "cap-primitives"
|
|
213
|
+
version = "3.4.5"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"ambient-authority",
|
|
218
|
+
"fs-set-times",
|
|
219
|
+
"io-extras",
|
|
220
|
+
"io-lifetimes",
|
|
221
|
+
"ipnet",
|
|
222
|
+
"maybe-owned",
|
|
223
|
+
"rustix 1.1.2",
|
|
224
|
+
"rustix-linux-procfs",
|
|
225
|
+
"windows-sys 0.59.0",
|
|
226
|
+
"winx",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "cap-rand"
|
|
231
|
+
version = "3.4.5"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"ambient-authority",
|
|
236
|
+
"rand",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "cap-std"
|
|
241
|
+
version = "3.4.5"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"cap-primitives",
|
|
246
|
+
"io-extras",
|
|
247
|
+
"io-lifetimes",
|
|
248
|
+
"rustix 1.1.2",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "cap-time-ext"
|
|
253
|
+
version = "3.4.5"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"ambient-authority",
|
|
258
|
+
"cap-primitives",
|
|
259
|
+
"iana-time-zone",
|
|
260
|
+
"once_cell",
|
|
261
|
+
"rustix 1.1.2",
|
|
262
|
+
"winx",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "cast"
|
|
267
|
+
version = "0.3.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "cc"
|
|
273
|
+
version = "1.2.49"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"find-msvc-tools",
|
|
278
|
+
"jobserver",
|
|
279
|
+
"libc",
|
|
280
|
+
"shlex",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "cfg-if"
|
|
285
|
+
version = "1.0.4"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "ciborium"
|
|
291
|
+
version = "0.2.2"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"ciborium-io",
|
|
296
|
+
"ciborium-ll",
|
|
297
|
+
"serde",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "ciborium-io"
|
|
302
|
+
version = "0.2.2"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "ciborium-ll"
|
|
308
|
+
version = "0.2.2"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"ciborium-io",
|
|
313
|
+
"half",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "cipher"
|
|
318
|
+
version = "0.4.4"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"crypto-common",
|
|
323
|
+
"inout",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "clap"
|
|
328
|
+
version = "4.5.53"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"clap_builder",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "clap_builder"
|
|
337
|
+
version = "4.5.53"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"anstyle",
|
|
342
|
+
"clap_lex",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "clap_lex"
|
|
347
|
+
version = "0.7.6"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "cobs"
|
|
353
|
+
version = "0.3.0"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"thiserror 2.0.17",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "component-init-transform"
|
|
362
|
+
version = "0.2.0"
|
|
363
|
+
source = "git+https://github.com/dicej/component-init?rev=2d965957#2d96595716615426e26b4346003a29f557e2f31b"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"anyhow",
|
|
366
|
+
"async-trait",
|
|
367
|
+
"futures",
|
|
368
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
369
|
+
"wasm-metadata 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
370
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "constant_time_eq"
|
|
375
|
+
version = "0.3.1"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "core-foundation-sys"
|
|
381
|
+
version = "0.8.7"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "cpp_demangle"
|
|
387
|
+
version = "0.4.5"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"cfg-if",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "cpufeatures"
|
|
396
|
+
version = "0.2.17"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"libc",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "cranelift-assembler-x64"
|
|
405
|
+
version = "0.126.1"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "30054f4aef4d614d37f27d5b77e36e165f0b27a71563be348e7c9fcfac41eed8"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"cranelift-assembler-x64-meta",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "cranelift-assembler-x64-meta"
|
|
414
|
+
version = "0.126.1"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "0beab56413879d4f515e08bcf118b1cb85f294129bb117057f573d37bfbb925a"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"cranelift-srcgen",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "cranelift-bforest"
|
|
423
|
+
version = "0.126.1"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "6d054747549a69b264d5299c8ca1b0dd45dc6bd0ee43f1edfcc42a8b12952c7a"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"cranelift-entity",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "cranelift-bitset"
|
|
432
|
+
version = "0.126.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "98b92d481b77a7dc9d07c96e24a16f29e0c9c27d042828fdf7e49e54ee9819bf"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"serde",
|
|
437
|
+
"serde_derive",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "cranelift-codegen"
|
|
442
|
+
version = "0.126.1"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "6eeccfc043d599b0ef1806942707fc51cdd1c3965c343956dc975a55d82a920f"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"bumpalo",
|
|
447
|
+
"cranelift-assembler-x64",
|
|
448
|
+
"cranelift-bforest",
|
|
449
|
+
"cranelift-bitset",
|
|
450
|
+
"cranelift-codegen-meta",
|
|
451
|
+
"cranelift-codegen-shared",
|
|
452
|
+
"cranelift-control",
|
|
453
|
+
"cranelift-entity",
|
|
454
|
+
"cranelift-isle",
|
|
455
|
+
"gimli",
|
|
456
|
+
"hashbrown 0.15.5",
|
|
457
|
+
"log",
|
|
458
|
+
"pulley-interpreter",
|
|
459
|
+
"regalloc2",
|
|
460
|
+
"rustc-hash",
|
|
461
|
+
"serde",
|
|
462
|
+
"smallvec",
|
|
463
|
+
"target-lexicon",
|
|
464
|
+
"wasmtime-internal-math",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "cranelift-codegen-meta"
|
|
469
|
+
version = "0.126.1"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "1174cdb9d9d43b2bdaa612a07ed82af13db9b95526bc2c286c2aec4689bcc038"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"cranelift-assembler-x64-meta",
|
|
474
|
+
"cranelift-codegen-shared",
|
|
475
|
+
"cranelift-srcgen",
|
|
476
|
+
"heck 0.5.0",
|
|
477
|
+
"pulley-interpreter",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "cranelift-codegen-shared"
|
|
482
|
+
version = "0.126.1"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "7d572be73fae802eb115f45e7e67a9ed16acb4ee683b67c4086768786545419a"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "cranelift-control"
|
|
488
|
+
version = "0.126.1"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "e1587465cc84c5cc793b44add928771945f3132bbf6b3621ee9473c631a87156"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"arbitrary",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "cranelift-entity"
|
|
497
|
+
version = "0.126.1"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "063b83448b1343e79282c3c7cbda7ed5f0816f0b763a4c15f7cecb0a17d87ea6"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"cranelift-bitset",
|
|
502
|
+
"serde",
|
|
503
|
+
"serde_derive",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "cranelift-frontend"
|
|
508
|
+
version = "0.126.1"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "aa4461c2d2ca48bc72883f5f5c3129d9aefac832df1db824af9db8db3efee109"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"cranelift-codegen",
|
|
513
|
+
"log",
|
|
514
|
+
"smallvec",
|
|
515
|
+
"target-lexicon",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "cranelift-isle"
|
|
520
|
+
version = "0.126.1"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "acd811b25e18f14810d09c504e06098acc1d9dbfa24879bf0d6b6fb44415fc66"
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "cranelift-native"
|
|
526
|
+
version = "0.126.1"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "2417046989d8d6367a55bbab2e406a9195d176f4779be4aa484d645887217d37"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"cranelift-codegen",
|
|
531
|
+
"libc",
|
|
532
|
+
"target-lexicon",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "cranelift-srcgen"
|
|
537
|
+
version = "0.126.1"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "8d039de901c8d928222b8128e1b9a9ab27b82a7445cb749a871c75d9cb25c57d"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "crc"
|
|
543
|
+
version = "3.4.0"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"crc-catalog",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "crc-catalog"
|
|
552
|
+
version = "2.4.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "crc32fast"
|
|
558
|
+
version = "1.5.0"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"cfg-if",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "criterion"
|
|
567
|
+
version = "0.5.1"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"anes",
|
|
572
|
+
"cast",
|
|
573
|
+
"ciborium",
|
|
574
|
+
"clap",
|
|
575
|
+
"criterion-plot",
|
|
576
|
+
"futures",
|
|
577
|
+
"is-terminal",
|
|
578
|
+
"itertools 0.10.5",
|
|
579
|
+
"num-traits",
|
|
580
|
+
"once_cell",
|
|
581
|
+
"oorandom",
|
|
582
|
+
"plotters",
|
|
583
|
+
"rayon",
|
|
584
|
+
"regex",
|
|
585
|
+
"serde",
|
|
586
|
+
"serde_derive",
|
|
587
|
+
"serde_json",
|
|
588
|
+
"tinytemplate",
|
|
589
|
+
"tokio",
|
|
590
|
+
"walkdir",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "criterion-plot"
|
|
595
|
+
version = "0.5.0"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"cast",
|
|
600
|
+
"itertools 0.10.5",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "crossbeam-deque"
|
|
605
|
+
version = "0.8.6"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"crossbeam-epoch",
|
|
610
|
+
"crossbeam-utils",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "crossbeam-epoch"
|
|
615
|
+
version = "0.9.18"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"crossbeam-utils",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "crossbeam-utils"
|
|
624
|
+
version = "0.8.21"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "crossterm"
|
|
630
|
+
version = "0.28.1"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"bitflags",
|
|
635
|
+
"crossterm_winapi",
|
|
636
|
+
"mio",
|
|
637
|
+
"parking_lot",
|
|
638
|
+
"rustix 0.38.44",
|
|
639
|
+
"signal-hook",
|
|
640
|
+
"signal-hook-mio",
|
|
641
|
+
"winapi",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "crossterm_winapi"
|
|
646
|
+
version = "0.9.1"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"winapi",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "crunchy"
|
|
655
|
+
version = "0.2.4"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "crypto-common"
|
|
661
|
+
version = "0.1.7"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"generic-array",
|
|
666
|
+
"typenum",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "debugid"
|
|
671
|
+
version = "0.8.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"uuid",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "deflate64"
|
|
680
|
+
version = "0.1.10"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "deranged"
|
|
686
|
+
version = "0.5.5"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"powerfmt",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "derive_arbitrary"
|
|
695
|
+
version = "1.4.2"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"proc-macro2",
|
|
700
|
+
"quote",
|
|
701
|
+
"syn",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "digest"
|
|
706
|
+
version = "0.10.7"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"block-buffer",
|
|
711
|
+
"crypto-common",
|
|
712
|
+
"subtle",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "directories-next"
|
|
717
|
+
version = "2.0.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"cfg-if",
|
|
722
|
+
"dirs-sys-next",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "dirs-sys-next"
|
|
727
|
+
version = "0.1.2"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"libc",
|
|
732
|
+
"redox_users",
|
|
733
|
+
"winapi",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "displaydoc"
|
|
738
|
+
version = "0.2.5"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"proc-macro2",
|
|
743
|
+
"quote",
|
|
744
|
+
"syn",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "dyn-clone"
|
|
749
|
+
version = "1.0.20"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "either"
|
|
755
|
+
version = "1.15.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "embedded-io"
|
|
761
|
+
version = "0.4.0"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "embedded-io"
|
|
767
|
+
version = "0.6.1"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "encoding_rs"
|
|
773
|
+
version = "0.8.35"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"cfg-if",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "equivalent"
|
|
782
|
+
version = "1.0.2"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "errno"
|
|
788
|
+
version = "0.3.14"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"libc",
|
|
793
|
+
"windows-sys 0.61.2",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "eryx"
|
|
798
|
+
version = "0.1.0"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"anyhow",
|
|
801
|
+
"async-trait",
|
|
802
|
+
"criterion",
|
|
803
|
+
"crossterm",
|
|
804
|
+
"eryx-runtime",
|
|
805
|
+
"flate2",
|
|
806
|
+
"futures",
|
|
807
|
+
"schemars",
|
|
808
|
+
"serde",
|
|
809
|
+
"serde_json",
|
|
810
|
+
"sha2",
|
|
811
|
+
"tar",
|
|
812
|
+
"tempfile",
|
|
813
|
+
"thiserror 2.0.17",
|
|
814
|
+
"tokio",
|
|
815
|
+
"tracing",
|
|
816
|
+
"walkdir",
|
|
817
|
+
"wasmtime",
|
|
818
|
+
"wasmtime-wasi",
|
|
819
|
+
"zip",
|
|
820
|
+
"zstd",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "eryx-python"
|
|
825
|
+
version = "0.1.0"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"eryx",
|
|
828
|
+
"pyo3",
|
|
829
|
+
"pyo3-build-config",
|
|
830
|
+
"serde_json",
|
|
831
|
+
"tokio",
|
|
832
|
+
"walkdir",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "eryx-runtime"
|
|
837
|
+
version = "0.1.0"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"anyhow",
|
|
840
|
+
"async-trait",
|
|
841
|
+
"component-init-transform",
|
|
842
|
+
"futures",
|
|
843
|
+
"sha2",
|
|
844
|
+
"tempfile",
|
|
845
|
+
"tracing",
|
|
846
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
847
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
848
|
+
"wasmtime",
|
|
849
|
+
"wasmtime-wasi",
|
|
850
|
+
"wit-component",
|
|
851
|
+
"wit-dylib",
|
|
852
|
+
"wit-parser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
853
|
+
"zip",
|
|
854
|
+
"zstd",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "eryx-wasm-runtime"
|
|
859
|
+
version = "0.1.0"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"pyo3",
|
|
862
|
+
"tokio",
|
|
863
|
+
"wasmtime",
|
|
864
|
+
"wasmtime-wasi",
|
|
865
|
+
"wit-component",
|
|
866
|
+
"wit-dylib",
|
|
867
|
+
"wit-dylib-ffi",
|
|
868
|
+
"wit-parser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
869
|
+
"zstd",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "fallible-iterator"
|
|
874
|
+
version = "0.3.0"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "fastrand"
|
|
880
|
+
version = "2.3.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "fd-lock"
|
|
886
|
+
version = "4.0.4"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"cfg-if",
|
|
891
|
+
"rustix 1.1.2",
|
|
892
|
+
"windows-sys 0.59.0",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "filetime"
|
|
897
|
+
version = "0.2.26"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"cfg-if",
|
|
902
|
+
"libc",
|
|
903
|
+
"libredox",
|
|
904
|
+
"windows-sys 0.60.2",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "find-msvc-tools"
|
|
909
|
+
version = "0.1.5"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "fixedbitset"
|
|
915
|
+
version = "0.4.2"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "flate2"
|
|
921
|
+
version = "1.1.5"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"crc32fast",
|
|
926
|
+
"miniz_oxide",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "foldhash"
|
|
931
|
+
version = "0.1.5"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "form_urlencoded"
|
|
937
|
+
version = "1.2.2"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"percent-encoding",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "fs-set-times"
|
|
946
|
+
version = "0.20.3"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"io-lifetimes",
|
|
951
|
+
"rustix 1.1.2",
|
|
952
|
+
"windows-sys 0.59.0",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "futures"
|
|
957
|
+
version = "0.3.31"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"futures-channel",
|
|
962
|
+
"futures-core",
|
|
963
|
+
"futures-executor",
|
|
964
|
+
"futures-io",
|
|
965
|
+
"futures-sink",
|
|
966
|
+
"futures-task",
|
|
967
|
+
"futures-util",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "futures-channel"
|
|
972
|
+
version = "0.3.31"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"futures-core",
|
|
977
|
+
"futures-sink",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "futures-core"
|
|
982
|
+
version = "0.3.31"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "futures-executor"
|
|
988
|
+
version = "0.3.31"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"futures-core",
|
|
993
|
+
"futures-task",
|
|
994
|
+
"futures-util",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "futures-io"
|
|
999
|
+
version = "0.3.31"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "futures-macro"
|
|
1005
|
+
version = "0.3.31"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"proc-macro2",
|
|
1010
|
+
"quote",
|
|
1011
|
+
"syn",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "futures-sink"
|
|
1016
|
+
version = "0.3.31"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "futures-task"
|
|
1022
|
+
version = "0.3.31"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "futures-util"
|
|
1028
|
+
version = "0.3.31"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"futures-channel",
|
|
1033
|
+
"futures-core",
|
|
1034
|
+
"futures-io",
|
|
1035
|
+
"futures-macro",
|
|
1036
|
+
"futures-sink",
|
|
1037
|
+
"futures-task",
|
|
1038
|
+
"memchr",
|
|
1039
|
+
"pin-project-lite",
|
|
1040
|
+
"pin-utils",
|
|
1041
|
+
"slab",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "fxprof-processed-profile"
|
|
1046
|
+
version = "0.8.1"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"bitflags",
|
|
1051
|
+
"debugid",
|
|
1052
|
+
"rustc-hash",
|
|
1053
|
+
"serde",
|
|
1054
|
+
"serde_derive",
|
|
1055
|
+
"serde_json",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "generic-array"
|
|
1060
|
+
version = "0.14.7"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"typenum",
|
|
1065
|
+
"version_check",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "getrandom"
|
|
1070
|
+
version = "0.2.16"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"cfg-if",
|
|
1075
|
+
"libc",
|
|
1076
|
+
"wasi",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "getrandom"
|
|
1081
|
+
version = "0.3.4"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"cfg-if",
|
|
1086
|
+
"js-sys",
|
|
1087
|
+
"libc",
|
|
1088
|
+
"r-efi",
|
|
1089
|
+
"wasip2",
|
|
1090
|
+
"wasm-bindgen",
|
|
1091
|
+
]
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "gimli"
|
|
1095
|
+
version = "0.32.3"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"fallible-iterator",
|
|
1100
|
+
"indexmap",
|
|
1101
|
+
"stable_deref_trait",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "half"
|
|
1106
|
+
version = "2.7.1"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"cfg-if",
|
|
1111
|
+
"crunchy",
|
|
1112
|
+
"zerocopy",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "hashbrown"
|
|
1117
|
+
version = "0.15.5"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"foldhash",
|
|
1122
|
+
"serde",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "hashbrown"
|
|
1127
|
+
version = "0.16.1"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "heck"
|
|
1133
|
+
version = "0.4.1"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "heck"
|
|
1139
|
+
version = "0.5.0"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "hermit-abi"
|
|
1145
|
+
version = "0.5.2"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "hmac"
|
|
1151
|
+
version = "0.12.1"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"digest",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "iana-time-zone"
|
|
1160
|
+
version = "0.1.64"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"android_system_properties",
|
|
1165
|
+
"core-foundation-sys",
|
|
1166
|
+
"iana-time-zone-haiku",
|
|
1167
|
+
"js-sys",
|
|
1168
|
+
"log",
|
|
1169
|
+
"wasm-bindgen",
|
|
1170
|
+
"windows-core",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "iana-time-zone-haiku"
|
|
1175
|
+
version = "0.1.2"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"cc",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "icu_collections"
|
|
1184
|
+
version = "2.1.1"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"displaydoc",
|
|
1189
|
+
"potential_utf",
|
|
1190
|
+
"yoke",
|
|
1191
|
+
"zerofrom",
|
|
1192
|
+
"zerovec",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "icu_locale_core"
|
|
1197
|
+
version = "2.1.1"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"displaydoc",
|
|
1202
|
+
"litemap",
|
|
1203
|
+
"tinystr",
|
|
1204
|
+
"writeable",
|
|
1205
|
+
"zerovec",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "icu_normalizer"
|
|
1210
|
+
version = "2.1.1"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"icu_collections",
|
|
1215
|
+
"icu_normalizer_data",
|
|
1216
|
+
"icu_properties",
|
|
1217
|
+
"icu_provider",
|
|
1218
|
+
"smallvec",
|
|
1219
|
+
"zerovec",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "icu_normalizer_data"
|
|
1224
|
+
version = "2.1.1"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "icu_properties"
|
|
1230
|
+
version = "2.1.1"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"icu_collections",
|
|
1235
|
+
"icu_locale_core",
|
|
1236
|
+
"icu_properties_data",
|
|
1237
|
+
"icu_provider",
|
|
1238
|
+
"zerotrie",
|
|
1239
|
+
"zerovec",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "icu_properties_data"
|
|
1244
|
+
version = "2.1.1"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "icu_provider"
|
|
1250
|
+
version = "2.1.1"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"displaydoc",
|
|
1255
|
+
"icu_locale_core",
|
|
1256
|
+
"writeable",
|
|
1257
|
+
"yoke",
|
|
1258
|
+
"zerofrom",
|
|
1259
|
+
"zerotrie",
|
|
1260
|
+
"zerovec",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "id-arena"
|
|
1265
|
+
version = "2.2.1"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "idna"
|
|
1271
|
+
version = "1.1.0"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1274
|
+
dependencies = [
|
|
1275
|
+
"idna_adapter",
|
|
1276
|
+
"smallvec",
|
|
1277
|
+
"utf8_iter",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "idna_adapter"
|
|
1282
|
+
version = "1.2.1"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"icu_normalizer",
|
|
1287
|
+
"icu_properties",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "im-rc"
|
|
1292
|
+
version = "15.1.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"bitmaps",
|
|
1297
|
+
"rand_core",
|
|
1298
|
+
"rand_xoshiro",
|
|
1299
|
+
"sized-chunks",
|
|
1300
|
+
"typenum",
|
|
1301
|
+
"version_check",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "indexmap"
|
|
1306
|
+
version = "2.12.1"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"equivalent",
|
|
1311
|
+
"hashbrown 0.16.1",
|
|
1312
|
+
"serde",
|
|
1313
|
+
"serde_core",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "indoc"
|
|
1318
|
+
version = "2.0.7"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"rustversion",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "inout"
|
|
1327
|
+
version = "0.1.4"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"generic-array",
|
|
1332
|
+
]
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "io-extras"
|
|
1336
|
+
version = "0.18.4"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"io-lifetimes",
|
|
1341
|
+
"windows-sys 0.59.0",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "io-lifetimes"
|
|
1346
|
+
version = "2.0.4"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "ipnet"
|
|
1352
|
+
version = "2.11.0"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "is-terminal"
|
|
1358
|
+
version = "0.4.17"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"hermit-abi",
|
|
1363
|
+
"libc",
|
|
1364
|
+
"windows-sys 0.61.2",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "itertools"
|
|
1369
|
+
version = "0.10.5"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"either",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "itertools"
|
|
1378
|
+
version = "0.14.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"either",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "itoa"
|
|
1387
|
+
version = "1.0.15"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "ittapi"
|
|
1393
|
+
version = "0.4.0"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
|
1396
|
+
dependencies = [
|
|
1397
|
+
"anyhow",
|
|
1398
|
+
"ittapi-sys",
|
|
1399
|
+
"log",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "ittapi-sys"
|
|
1404
|
+
version = "0.4.0"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"cc",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "jobserver"
|
|
1413
|
+
version = "0.1.34"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"getrandom 0.3.4",
|
|
1418
|
+
"libc",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "js-sys"
|
|
1423
|
+
version = "0.3.83"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"once_cell",
|
|
1428
|
+
"wasm-bindgen",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "leb128"
|
|
1433
|
+
version = "0.2.5"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "leb128fmt"
|
|
1439
|
+
version = "0.1.0"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "libc"
|
|
1445
|
+
version = "0.2.178"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "libm"
|
|
1451
|
+
version = "0.2.15"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "libredox"
|
|
1457
|
+
version = "0.1.10"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"bitflags",
|
|
1462
|
+
"libc",
|
|
1463
|
+
"redox_syscall",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "linux-raw-sys"
|
|
1468
|
+
version = "0.4.15"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "linux-raw-sys"
|
|
1474
|
+
version = "0.11.0"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "litemap"
|
|
1480
|
+
version = "0.8.1"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "lock_api"
|
|
1486
|
+
version = "0.4.14"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"scopeguard",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "log"
|
|
1495
|
+
version = "0.4.29"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "lzma-rs"
|
|
1501
|
+
version = "0.3.0"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
|
1504
|
+
dependencies = [
|
|
1505
|
+
"byteorder",
|
|
1506
|
+
"crc",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "lzma-sys"
|
|
1511
|
+
version = "0.1.20"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"cc",
|
|
1516
|
+
"libc",
|
|
1517
|
+
"pkg-config",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "mach2"
|
|
1522
|
+
version = "0.4.3"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"libc",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "maybe-owned"
|
|
1531
|
+
version = "0.3.4"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "memchr"
|
|
1537
|
+
version = "2.7.6"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "memfd"
|
|
1543
|
+
version = "0.6.5"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"rustix 1.1.2",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "memoffset"
|
|
1552
|
+
version = "0.9.1"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1555
|
+
dependencies = [
|
|
1556
|
+
"autocfg",
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "miniz_oxide"
|
|
1561
|
+
version = "0.8.9"
|
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1564
|
+
dependencies = [
|
|
1565
|
+
"adler2",
|
|
1566
|
+
"simd-adler32",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "mio"
|
|
1571
|
+
version = "1.1.1"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"libc",
|
|
1576
|
+
"log",
|
|
1577
|
+
"wasi",
|
|
1578
|
+
"windows-sys 0.61.2",
|
|
1579
|
+
]
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "num-conv"
|
|
1583
|
+
version = "0.1.0"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "num-traits"
|
|
1589
|
+
version = "0.2.19"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"autocfg",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "object"
|
|
1598
|
+
version = "0.37.3"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"crc32fast",
|
|
1603
|
+
"hashbrown 0.15.5",
|
|
1604
|
+
"indexmap",
|
|
1605
|
+
"memchr",
|
|
1606
|
+
]
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "once_cell"
|
|
1610
|
+
version = "1.21.3"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "oorandom"
|
|
1616
|
+
version = "11.1.5"
|
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "parking_lot"
|
|
1622
|
+
version = "0.12.5"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"lock_api",
|
|
1627
|
+
"parking_lot_core",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "parking_lot_core"
|
|
1632
|
+
version = "0.9.12"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"cfg-if",
|
|
1637
|
+
"libc",
|
|
1638
|
+
"redox_syscall",
|
|
1639
|
+
"smallvec",
|
|
1640
|
+
"windows-link",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "pbkdf2"
|
|
1645
|
+
version = "0.12.2"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"digest",
|
|
1650
|
+
"hmac",
|
|
1651
|
+
]
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "percent-encoding"
|
|
1655
|
+
version = "2.3.2"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "petgraph"
|
|
1661
|
+
version = "0.6.5"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"fixedbitset",
|
|
1666
|
+
"indexmap",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "pin-project-lite"
|
|
1671
|
+
version = "0.2.16"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "pin-utils"
|
|
1677
|
+
version = "0.1.0"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "pkg-config"
|
|
1683
|
+
version = "0.3.32"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "plotters"
|
|
1689
|
+
version = "0.3.7"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"num-traits",
|
|
1694
|
+
"plotters-backend",
|
|
1695
|
+
"plotters-svg",
|
|
1696
|
+
"wasm-bindgen",
|
|
1697
|
+
"web-sys",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "plotters-backend"
|
|
1702
|
+
version = "0.3.7"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "plotters-svg"
|
|
1708
|
+
version = "0.3.7"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"plotters-backend",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "portable-atomic"
|
|
1717
|
+
version = "1.11.1"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "postcard"
|
|
1723
|
+
version = "1.1.3"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1726
|
+
dependencies = [
|
|
1727
|
+
"cobs",
|
|
1728
|
+
"embedded-io 0.4.0",
|
|
1729
|
+
"embedded-io 0.6.1",
|
|
1730
|
+
"serde",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "potential_utf"
|
|
1735
|
+
version = "0.1.4"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"zerovec",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "powerfmt"
|
|
1744
|
+
version = "0.2.0"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "ppv-lite86"
|
|
1750
|
+
version = "0.2.21"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"zerocopy",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "proc-macro2"
|
|
1759
|
+
version = "1.0.103"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"unicode-ident",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "pulley-interpreter"
|
|
1768
|
+
version = "39.0.1"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "0a09eb45f768f3a0396e85822790d867000c8b5f11551e7268c279e991457b16"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"cranelift-bitset",
|
|
1773
|
+
"log",
|
|
1774
|
+
"pulley-macros",
|
|
1775
|
+
"wasmtime-internal-math",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "pulley-macros"
|
|
1780
|
+
version = "39.0.1"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "e29368432b8b7a8a343b75a6914621fad905c95d5c5297449a6546c127224f7a"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"proc-macro2",
|
|
1785
|
+
"quote",
|
|
1786
|
+
"syn",
|
|
1787
|
+
]
|
|
1788
|
+
|
|
1789
|
+
[[package]]
|
|
1790
|
+
name = "pyo3"
|
|
1791
|
+
version = "0.24.2"
|
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
1794
|
+
dependencies = [
|
|
1795
|
+
"cfg-if",
|
|
1796
|
+
"indoc",
|
|
1797
|
+
"libc",
|
|
1798
|
+
"memoffset",
|
|
1799
|
+
"once_cell",
|
|
1800
|
+
"portable-atomic",
|
|
1801
|
+
"pyo3-build-config",
|
|
1802
|
+
"pyo3-ffi",
|
|
1803
|
+
"pyo3-macros",
|
|
1804
|
+
"unindent",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "pyo3-build-config"
|
|
1809
|
+
version = "0.24.2"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"once_cell",
|
|
1814
|
+
"target-lexicon",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "pyo3-ffi"
|
|
1819
|
+
version = "0.24.2"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"libc",
|
|
1824
|
+
"pyo3-build-config",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "pyo3-macros"
|
|
1829
|
+
version = "0.24.2"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"proc-macro2",
|
|
1834
|
+
"pyo3-macros-backend",
|
|
1835
|
+
"quote",
|
|
1836
|
+
"syn",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "pyo3-macros-backend"
|
|
1841
|
+
version = "0.24.2"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"heck 0.5.0",
|
|
1846
|
+
"proc-macro2",
|
|
1847
|
+
"pyo3-build-config",
|
|
1848
|
+
"quote",
|
|
1849
|
+
"syn",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "quote"
|
|
1854
|
+
version = "1.0.42"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"proc-macro2",
|
|
1859
|
+
]
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "r-efi"
|
|
1863
|
+
version = "5.3.0"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "rand"
|
|
1869
|
+
version = "0.8.5"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1872
|
+
dependencies = [
|
|
1873
|
+
"libc",
|
|
1874
|
+
"rand_chacha",
|
|
1875
|
+
"rand_core",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "rand_chacha"
|
|
1880
|
+
version = "0.3.1"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"ppv-lite86",
|
|
1885
|
+
"rand_core",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "rand_core"
|
|
1890
|
+
version = "0.6.4"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1893
|
+
dependencies = [
|
|
1894
|
+
"getrandom 0.2.16",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "rand_xoshiro"
|
|
1899
|
+
version = "0.6.0"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"rand_core",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "rayon"
|
|
1908
|
+
version = "1.11.0"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"either",
|
|
1913
|
+
"rayon-core",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "rayon-core"
|
|
1918
|
+
version = "1.13.0"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1921
|
+
dependencies = [
|
|
1922
|
+
"crossbeam-deque",
|
|
1923
|
+
"crossbeam-utils",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "redox_syscall"
|
|
1928
|
+
version = "0.5.18"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"bitflags",
|
|
1933
|
+
]
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "redox_users"
|
|
1937
|
+
version = "0.4.6"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1940
|
+
dependencies = [
|
|
1941
|
+
"getrandom 0.2.16",
|
|
1942
|
+
"libredox",
|
|
1943
|
+
"thiserror 1.0.69",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "ref-cast"
|
|
1948
|
+
version = "1.0.25"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"ref-cast-impl",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "ref-cast-impl"
|
|
1957
|
+
version = "1.0.25"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"proc-macro2",
|
|
1962
|
+
"quote",
|
|
1963
|
+
"syn",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "regalloc2"
|
|
1968
|
+
version = "0.13.3"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "4e249c660440317032a71ddac302f25f1d5dff387667bcc3978d1f77aa31ac34"
|
|
1971
|
+
dependencies = [
|
|
1972
|
+
"allocator-api2",
|
|
1973
|
+
"bumpalo",
|
|
1974
|
+
"hashbrown 0.15.5",
|
|
1975
|
+
"log",
|
|
1976
|
+
"rustc-hash",
|
|
1977
|
+
"smallvec",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "regex"
|
|
1982
|
+
version = "1.12.2"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"aho-corasick",
|
|
1987
|
+
"memchr",
|
|
1988
|
+
"regex-automata",
|
|
1989
|
+
"regex-syntax",
|
|
1990
|
+
]
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "regex-automata"
|
|
1994
|
+
version = "0.4.13"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"aho-corasick",
|
|
1999
|
+
"memchr",
|
|
2000
|
+
"regex-syntax",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "regex-syntax"
|
|
2005
|
+
version = "0.8.8"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2008
|
+
|
|
2009
|
+
[[package]]
|
|
2010
|
+
name = "rustc-demangle"
|
|
2011
|
+
version = "0.1.26"
|
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "rustc-hash"
|
|
2017
|
+
version = "2.1.1"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "rustix"
|
|
2023
|
+
version = "0.38.44"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"bitflags",
|
|
2028
|
+
"errno",
|
|
2029
|
+
"libc",
|
|
2030
|
+
"linux-raw-sys 0.4.15",
|
|
2031
|
+
"windows-sys 0.59.0",
|
|
2032
|
+
]
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "rustix"
|
|
2036
|
+
version = "1.1.2"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"bitflags",
|
|
2041
|
+
"errno",
|
|
2042
|
+
"libc",
|
|
2043
|
+
"linux-raw-sys 0.11.0",
|
|
2044
|
+
"windows-sys 0.61.2",
|
|
2045
|
+
]
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "rustix-linux-procfs"
|
|
2049
|
+
version = "0.1.1"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"once_cell",
|
|
2054
|
+
"rustix 1.1.2",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "rustversion"
|
|
2059
|
+
version = "1.0.22"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "ryu"
|
|
2065
|
+
version = "1.0.20"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "same-file"
|
|
2071
|
+
version = "1.0.6"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2074
|
+
dependencies = [
|
|
2075
|
+
"winapi-util",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "schemars"
|
|
2080
|
+
version = "1.1.0"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"dyn-clone",
|
|
2085
|
+
"ref-cast",
|
|
2086
|
+
"schemars_derive",
|
|
2087
|
+
"serde",
|
|
2088
|
+
"serde_json",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "schemars_derive"
|
|
2093
|
+
version = "1.1.0"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "301858a4023d78debd2353c7426dc486001bddc91ae31a76fb1f55132f7e2633"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"proc-macro2",
|
|
2098
|
+
"quote",
|
|
2099
|
+
"serde_derive_internals",
|
|
2100
|
+
"syn",
|
|
2101
|
+
]
|
|
2102
|
+
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "scopeguard"
|
|
2105
|
+
version = "1.2.0"
|
|
2106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2108
|
+
|
|
2109
|
+
[[package]]
|
|
2110
|
+
name = "semver"
|
|
2111
|
+
version = "1.0.27"
|
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2114
|
+
dependencies = [
|
|
2115
|
+
"serde",
|
|
2116
|
+
"serde_core",
|
|
2117
|
+
]
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "serde"
|
|
2121
|
+
version = "1.0.228"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2124
|
+
dependencies = [
|
|
2125
|
+
"serde_core",
|
|
2126
|
+
"serde_derive",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "serde_core"
|
|
2131
|
+
version = "1.0.228"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"serde_derive",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "serde_derive"
|
|
2140
|
+
version = "1.0.228"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"proc-macro2",
|
|
2145
|
+
"quote",
|
|
2146
|
+
"syn",
|
|
2147
|
+
]
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "serde_derive_internals"
|
|
2151
|
+
version = "0.29.1"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"proc-macro2",
|
|
2156
|
+
"quote",
|
|
2157
|
+
"syn",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "serde_json"
|
|
2162
|
+
version = "1.0.145"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"itoa",
|
|
2167
|
+
"memchr",
|
|
2168
|
+
"ryu",
|
|
2169
|
+
"serde",
|
|
2170
|
+
"serde_core",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "serde_spanned"
|
|
2175
|
+
version = "1.0.3"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"serde_core",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "serde_yaml"
|
|
2184
|
+
version = "0.9.34+deprecated"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2187
|
+
dependencies = [
|
|
2188
|
+
"indexmap",
|
|
2189
|
+
"itoa",
|
|
2190
|
+
"ryu",
|
|
2191
|
+
"serde",
|
|
2192
|
+
"unsafe-libyaml",
|
|
2193
|
+
]
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "sha1"
|
|
2197
|
+
version = "0.10.6"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2200
|
+
dependencies = [
|
|
2201
|
+
"cfg-if",
|
|
2202
|
+
"cpufeatures",
|
|
2203
|
+
"digest",
|
|
2204
|
+
]
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "sha2"
|
|
2208
|
+
version = "0.10.9"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"cfg-if",
|
|
2213
|
+
"cpufeatures",
|
|
2214
|
+
"digest",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "shlex"
|
|
2219
|
+
version = "1.3.0"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "signal-hook"
|
|
2225
|
+
version = "0.3.18"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"libc",
|
|
2230
|
+
"signal-hook-registry",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "signal-hook-mio"
|
|
2235
|
+
version = "0.2.5"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"libc",
|
|
2240
|
+
"mio",
|
|
2241
|
+
"signal-hook",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "signal-hook-registry"
|
|
2246
|
+
version = "1.4.7"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"libc",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "simd-adler32"
|
|
2255
|
+
version = "0.3.8"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "sized-chunks"
|
|
2261
|
+
version = "0.6.5"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
|
|
2264
|
+
dependencies = [
|
|
2265
|
+
"bitmaps",
|
|
2266
|
+
"typenum",
|
|
2267
|
+
]
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "slab"
|
|
2271
|
+
version = "0.4.11"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "smallvec"
|
|
2277
|
+
version = "1.15.1"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"serde",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "socket2"
|
|
2286
|
+
version = "0.6.1"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2289
|
+
dependencies = [
|
|
2290
|
+
"libc",
|
|
2291
|
+
"windows-sys 0.60.2",
|
|
2292
|
+
]
|
|
2293
|
+
|
|
2294
|
+
[[package]]
|
|
2295
|
+
name = "spdx"
|
|
2296
|
+
version = "0.10.9"
|
|
2297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
+
checksum = "c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3"
|
|
2299
|
+
dependencies = [
|
|
2300
|
+
"smallvec",
|
|
2301
|
+
]
|
|
2302
|
+
|
|
2303
|
+
[[package]]
|
|
2304
|
+
name = "stable_deref_trait"
|
|
2305
|
+
version = "1.2.1"
|
|
2306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2308
|
+
|
|
2309
|
+
[[package]]
|
|
2310
|
+
name = "subtle"
|
|
2311
|
+
version = "2.6.1"
|
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "syn"
|
|
2317
|
+
version = "2.0.111"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"proc-macro2",
|
|
2322
|
+
"quote",
|
|
2323
|
+
"unicode-ident",
|
|
2324
|
+
]
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "synstructure"
|
|
2328
|
+
version = "0.13.2"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"proc-macro2",
|
|
2333
|
+
"quote",
|
|
2334
|
+
"syn",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "system-interface"
|
|
2339
|
+
version = "0.27.3"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"bitflags",
|
|
2344
|
+
"cap-fs-ext",
|
|
2345
|
+
"cap-std",
|
|
2346
|
+
"fd-lock",
|
|
2347
|
+
"io-lifetimes",
|
|
2348
|
+
"rustix 0.38.44",
|
|
2349
|
+
"windows-sys 0.59.0",
|
|
2350
|
+
"winx",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "tar"
|
|
2355
|
+
version = "0.4.44"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"filetime",
|
|
2360
|
+
"libc",
|
|
2361
|
+
"xattr",
|
|
2362
|
+
]
|
|
2363
|
+
|
|
2364
|
+
[[package]]
|
|
2365
|
+
name = "target-lexicon"
|
|
2366
|
+
version = "0.13.3"
|
|
2367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
2369
|
+
|
|
2370
|
+
[[package]]
|
|
2371
|
+
name = "tempfile"
|
|
2372
|
+
version = "3.23.0"
|
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2375
|
+
dependencies = [
|
|
2376
|
+
"fastrand",
|
|
2377
|
+
"getrandom 0.3.4",
|
|
2378
|
+
"once_cell",
|
|
2379
|
+
"rustix 1.1.2",
|
|
2380
|
+
"windows-sys 0.61.2",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "termcolor"
|
|
2385
|
+
version = "1.4.1"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"winapi-util",
|
|
2390
|
+
]
|
|
2391
|
+
|
|
2392
|
+
[[package]]
|
|
2393
|
+
name = "thiserror"
|
|
2394
|
+
version = "1.0.69"
|
|
2395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2397
|
+
dependencies = [
|
|
2398
|
+
"thiserror-impl 1.0.69",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "thiserror"
|
|
2403
|
+
version = "2.0.17"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2406
|
+
dependencies = [
|
|
2407
|
+
"thiserror-impl 2.0.17",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "thiserror-impl"
|
|
2412
|
+
version = "1.0.69"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"proc-macro2",
|
|
2417
|
+
"quote",
|
|
2418
|
+
"syn",
|
|
2419
|
+
]
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "thiserror-impl"
|
|
2423
|
+
version = "2.0.17"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2426
|
+
dependencies = [
|
|
2427
|
+
"proc-macro2",
|
|
2428
|
+
"quote",
|
|
2429
|
+
"syn",
|
|
2430
|
+
]
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "time"
|
|
2434
|
+
version = "0.3.44"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
2437
|
+
dependencies = [
|
|
2438
|
+
"deranged",
|
|
2439
|
+
"num-conv",
|
|
2440
|
+
"powerfmt",
|
|
2441
|
+
"serde",
|
|
2442
|
+
"time-core",
|
|
2443
|
+
]
|
|
2444
|
+
|
|
2445
|
+
[[package]]
|
|
2446
|
+
name = "time-core"
|
|
2447
|
+
version = "0.1.6"
|
|
2448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2449
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "tinystr"
|
|
2453
|
+
version = "0.8.2"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2456
|
+
dependencies = [
|
|
2457
|
+
"displaydoc",
|
|
2458
|
+
"zerovec",
|
|
2459
|
+
]
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "tinytemplate"
|
|
2463
|
+
version = "1.2.1"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"serde",
|
|
2468
|
+
"serde_json",
|
|
2469
|
+
]
|
|
2470
|
+
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "tokio"
|
|
2473
|
+
version = "1.48.0"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
2476
|
+
dependencies = [
|
|
2477
|
+
"bytes",
|
|
2478
|
+
"libc",
|
|
2479
|
+
"mio",
|
|
2480
|
+
"parking_lot",
|
|
2481
|
+
"pin-project-lite",
|
|
2482
|
+
"signal-hook-registry",
|
|
2483
|
+
"socket2",
|
|
2484
|
+
"tokio-macros",
|
|
2485
|
+
"windows-sys 0.61.2",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "tokio-macros"
|
|
2490
|
+
version = "2.6.0"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"proc-macro2",
|
|
2495
|
+
"quote",
|
|
2496
|
+
"syn",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "toml"
|
|
2501
|
+
version = "0.9.8"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"indexmap",
|
|
2506
|
+
"serde_core",
|
|
2507
|
+
"serde_spanned",
|
|
2508
|
+
"toml_datetime",
|
|
2509
|
+
"toml_parser",
|
|
2510
|
+
"toml_writer",
|
|
2511
|
+
"winnow",
|
|
2512
|
+
]
|
|
2513
|
+
|
|
2514
|
+
[[package]]
|
|
2515
|
+
name = "toml_datetime"
|
|
2516
|
+
version = "0.7.3"
|
|
2517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
2519
|
+
dependencies = [
|
|
2520
|
+
"serde_core",
|
|
2521
|
+
]
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "toml_parser"
|
|
2525
|
+
version = "1.0.4"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
2528
|
+
dependencies = [
|
|
2529
|
+
"winnow",
|
|
2530
|
+
]
|
|
2531
|
+
|
|
2532
|
+
[[package]]
|
|
2533
|
+
name = "toml_writer"
|
|
2534
|
+
version = "1.0.4"
|
|
2535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "topological-sort"
|
|
2540
|
+
version = "0.2.2"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "tracing"
|
|
2546
|
+
version = "0.1.43"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
|
|
2549
|
+
dependencies = [
|
|
2550
|
+
"pin-project-lite",
|
|
2551
|
+
"tracing-attributes",
|
|
2552
|
+
"tracing-core",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "tracing-attributes"
|
|
2557
|
+
version = "0.1.31"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2560
|
+
dependencies = [
|
|
2561
|
+
"proc-macro2",
|
|
2562
|
+
"quote",
|
|
2563
|
+
"syn",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "tracing-core"
|
|
2568
|
+
version = "0.1.35"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"once_cell",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "typenum"
|
|
2577
|
+
version = "1.19.0"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "unicode-ident"
|
|
2583
|
+
version = "1.0.22"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
2586
|
+
|
|
2587
|
+
[[package]]
|
|
2588
|
+
name = "unicode-width"
|
|
2589
|
+
version = "0.2.2"
|
|
2590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2592
|
+
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "unicode-xid"
|
|
2595
|
+
version = "0.2.6"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "unindent"
|
|
2601
|
+
version = "0.2.4"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "unsafe-libyaml"
|
|
2607
|
+
version = "0.2.11"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
2610
|
+
|
|
2611
|
+
[[package]]
|
|
2612
|
+
name = "url"
|
|
2613
|
+
version = "2.5.7"
|
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
2616
|
+
dependencies = [
|
|
2617
|
+
"form_urlencoded",
|
|
2618
|
+
"idna",
|
|
2619
|
+
"percent-encoding",
|
|
2620
|
+
"serde",
|
|
2621
|
+
]
|
|
2622
|
+
|
|
2623
|
+
[[package]]
|
|
2624
|
+
name = "utf8_iter"
|
|
2625
|
+
version = "1.0.4"
|
|
2626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "uuid"
|
|
2631
|
+
version = "1.19.0"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
2634
|
+
dependencies = [
|
|
2635
|
+
"js-sys",
|
|
2636
|
+
"wasm-bindgen",
|
|
2637
|
+
]
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "version_check"
|
|
2641
|
+
version = "0.9.5"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "walkdir"
|
|
2647
|
+
version = "2.5.0"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"same-file",
|
|
2652
|
+
"winapi-util",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "wasi"
|
|
2657
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "wasip2"
|
|
2663
|
+
version = "1.0.1+wasi-0.2.4"
|
|
2664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
2666
|
+
dependencies = [
|
|
2667
|
+
"wit-bindgen",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "wasm-bindgen"
|
|
2672
|
+
version = "0.2.106"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"cfg-if",
|
|
2677
|
+
"once_cell",
|
|
2678
|
+
"rustversion",
|
|
2679
|
+
"wasm-bindgen-macro",
|
|
2680
|
+
"wasm-bindgen-shared",
|
|
2681
|
+
]
|
|
2682
|
+
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "wasm-bindgen-macro"
|
|
2685
|
+
version = "0.2.106"
|
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
2688
|
+
dependencies = [
|
|
2689
|
+
"quote",
|
|
2690
|
+
"wasm-bindgen-macro-support",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "wasm-bindgen-macro-support"
|
|
2695
|
+
version = "0.2.106"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"bumpalo",
|
|
2700
|
+
"proc-macro2",
|
|
2701
|
+
"quote",
|
|
2702
|
+
"syn",
|
|
2703
|
+
"wasm-bindgen-shared",
|
|
2704
|
+
]
|
|
2705
|
+
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "wasm-bindgen-shared"
|
|
2708
|
+
version = "0.2.106"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"unicode-ident",
|
|
2713
|
+
]
|
|
2714
|
+
|
|
2715
|
+
[[package]]
|
|
2716
|
+
name = "wasm-compose"
|
|
2717
|
+
version = "0.240.0"
|
|
2718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
+
checksum = "feeb9a231e63bd5d5dfe07e9f8daa53d5c85e4f7de5ef756d3b4e6a5f501c578"
|
|
2720
|
+
dependencies = [
|
|
2721
|
+
"anyhow",
|
|
2722
|
+
"heck 0.4.1",
|
|
2723
|
+
"im-rc",
|
|
2724
|
+
"indexmap",
|
|
2725
|
+
"log",
|
|
2726
|
+
"petgraph",
|
|
2727
|
+
"serde",
|
|
2728
|
+
"serde_derive",
|
|
2729
|
+
"serde_yaml",
|
|
2730
|
+
"smallvec",
|
|
2731
|
+
"wasm-encoder 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2732
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2733
|
+
"wat",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "wasm-encoder"
|
|
2738
|
+
version = "0.240.0"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "06d642d8c5ecc083aafe9ceb32809276a304547a3a6eeecceb5d8152598bc71f"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"leb128fmt",
|
|
2743
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2744
|
+
]
|
|
2745
|
+
|
|
2746
|
+
[[package]]
|
|
2747
|
+
name = "wasm-encoder"
|
|
2748
|
+
version = "0.240.0"
|
|
2749
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59#b1d8ff591bcb8c052b54c3c17495bbbef401897c"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"leb128fmt",
|
|
2752
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
2753
|
+
]
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "wasm-encoder"
|
|
2757
|
+
version = "0.240.0"
|
|
2758
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
2759
|
+
dependencies = [
|
|
2760
|
+
"leb128fmt",
|
|
2761
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
2762
|
+
]
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "wasm-encoder"
|
|
2766
|
+
version = "0.243.0"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
|
|
2769
|
+
dependencies = [
|
|
2770
|
+
"leb128fmt",
|
|
2771
|
+
"wasmparser 0.243.0",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "wasm-metadata"
|
|
2776
|
+
version = "0.240.0"
|
|
2777
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59#b1d8ff591bcb8c052b54c3c17495bbbef401897c"
|
|
2778
|
+
dependencies = [
|
|
2779
|
+
"anyhow",
|
|
2780
|
+
"auditable-serde",
|
|
2781
|
+
"flate2",
|
|
2782
|
+
"indexmap",
|
|
2783
|
+
"serde",
|
|
2784
|
+
"serde_derive",
|
|
2785
|
+
"serde_json",
|
|
2786
|
+
"spdx",
|
|
2787
|
+
"url",
|
|
2788
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
2789
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59)",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "wasm-metadata"
|
|
2794
|
+
version = "0.240.0"
|
|
2795
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
2796
|
+
dependencies = [
|
|
2797
|
+
"anyhow",
|
|
2798
|
+
"indexmap",
|
|
2799
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
2800
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
2801
|
+
]
|
|
2802
|
+
|
|
2803
|
+
[[package]]
|
|
2804
|
+
name = "wasmparser"
|
|
2805
|
+
version = "0.240.0"
|
|
2806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
+
checksum = "b722dcf61e0ea47440b53ff83ccb5df8efec57a69d150e4f24882e4eba7e24a4"
|
|
2808
|
+
dependencies = [
|
|
2809
|
+
"bitflags",
|
|
2810
|
+
"hashbrown 0.15.5",
|
|
2811
|
+
"indexmap",
|
|
2812
|
+
"semver",
|
|
2813
|
+
"serde",
|
|
2814
|
+
]
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "wasmparser"
|
|
2818
|
+
version = "0.240.0"
|
|
2819
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=b1d8ff59#b1d8ff591bcb8c052b54c3c17495bbbef401897c"
|
|
2820
|
+
dependencies = [
|
|
2821
|
+
"bitflags",
|
|
2822
|
+
"hashbrown 0.15.5",
|
|
2823
|
+
"indexmap",
|
|
2824
|
+
"semver",
|
|
2825
|
+
"serde",
|
|
2826
|
+
]
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "wasmparser"
|
|
2830
|
+
version = "0.240.0"
|
|
2831
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
2832
|
+
dependencies = [
|
|
2833
|
+
"bitflags",
|
|
2834
|
+
"hashbrown 0.15.5",
|
|
2835
|
+
"indexmap",
|
|
2836
|
+
"semver",
|
|
2837
|
+
"serde",
|
|
2838
|
+
]
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "wasmparser"
|
|
2842
|
+
version = "0.243.0"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
|
|
2845
|
+
dependencies = [
|
|
2846
|
+
"bitflags",
|
|
2847
|
+
"indexmap",
|
|
2848
|
+
"semver",
|
|
2849
|
+
]
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "wasmprinter"
|
|
2853
|
+
version = "0.240.0"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "a84d6e25c198da67d0150ee7c2c62d33d784f0a565d1e670bdf1eeccca8158bc"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"anyhow",
|
|
2858
|
+
"termcolor",
|
|
2859
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "wasmtime"
|
|
2864
|
+
version = "39.0.1"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "511bc19c2d48f338007dc941cb40c833c4707023fdaf9ec9b97cf1d5a62d26bb"
|
|
2867
|
+
dependencies = [
|
|
2868
|
+
"addr2line",
|
|
2869
|
+
"anyhow",
|
|
2870
|
+
"async-trait",
|
|
2871
|
+
"bitflags",
|
|
2872
|
+
"bumpalo",
|
|
2873
|
+
"cc",
|
|
2874
|
+
"cfg-if",
|
|
2875
|
+
"encoding_rs",
|
|
2876
|
+
"futures",
|
|
2877
|
+
"fxprof-processed-profile",
|
|
2878
|
+
"gimli",
|
|
2879
|
+
"hashbrown 0.15.5",
|
|
2880
|
+
"indexmap",
|
|
2881
|
+
"ittapi",
|
|
2882
|
+
"libc",
|
|
2883
|
+
"log",
|
|
2884
|
+
"mach2",
|
|
2885
|
+
"memfd",
|
|
2886
|
+
"object",
|
|
2887
|
+
"once_cell",
|
|
2888
|
+
"postcard",
|
|
2889
|
+
"pulley-interpreter",
|
|
2890
|
+
"rayon",
|
|
2891
|
+
"rustix 1.1.2",
|
|
2892
|
+
"semver",
|
|
2893
|
+
"serde",
|
|
2894
|
+
"serde_derive",
|
|
2895
|
+
"serde_json",
|
|
2896
|
+
"smallvec",
|
|
2897
|
+
"target-lexicon",
|
|
2898
|
+
"tempfile",
|
|
2899
|
+
"wasm-compose",
|
|
2900
|
+
"wasm-encoder 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2901
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2902
|
+
"wasmtime-environ",
|
|
2903
|
+
"wasmtime-internal-cache",
|
|
2904
|
+
"wasmtime-internal-component-macro",
|
|
2905
|
+
"wasmtime-internal-component-util",
|
|
2906
|
+
"wasmtime-internal-cranelift",
|
|
2907
|
+
"wasmtime-internal-fiber",
|
|
2908
|
+
"wasmtime-internal-jit-debug",
|
|
2909
|
+
"wasmtime-internal-jit-icache-coherence",
|
|
2910
|
+
"wasmtime-internal-math",
|
|
2911
|
+
"wasmtime-internal-slab",
|
|
2912
|
+
"wasmtime-internal-unwinder",
|
|
2913
|
+
"wasmtime-internal-versioned-export-macros",
|
|
2914
|
+
"wasmtime-internal-winch",
|
|
2915
|
+
"wat",
|
|
2916
|
+
"windows-sys 0.60.2",
|
|
2917
|
+
]
|
|
2918
|
+
|
|
2919
|
+
[[package]]
|
|
2920
|
+
name = "wasmtime-environ"
|
|
2921
|
+
version = "39.0.1"
|
|
2922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
+
checksum = "c3b0d53657fea2a8cee8ed1866ad45d2e5bc21be958a626a1dd9b7de589851b3"
|
|
2924
|
+
dependencies = [
|
|
2925
|
+
"anyhow",
|
|
2926
|
+
"cpp_demangle",
|
|
2927
|
+
"cranelift-bitset",
|
|
2928
|
+
"cranelift-entity",
|
|
2929
|
+
"gimli",
|
|
2930
|
+
"indexmap",
|
|
2931
|
+
"log",
|
|
2932
|
+
"object",
|
|
2933
|
+
"postcard",
|
|
2934
|
+
"rustc-demangle",
|
|
2935
|
+
"semver",
|
|
2936
|
+
"serde",
|
|
2937
|
+
"serde_derive",
|
|
2938
|
+
"smallvec",
|
|
2939
|
+
"target-lexicon",
|
|
2940
|
+
"wasm-encoder 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2941
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2942
|
+
"wasmprinter",
|
|
2943
|
+
"wasmtime-internal-component-util",
|
|
2944
|
+
]
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "wasmtime-internal-cache"
|
|
2948
|
+
version = "39.0.1"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "35e065628d2a6eccb722de71c6d9b58771f5c3c4f9d35f6cb6d9d92370f4c2b4"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"anyhow",
|
|
2953
|
+
"base64",
|
|
2954
|
+
"directories-next",
|
|
2955
|
+
"log",
|
|
2956
|
+
"postcard",
|
|
2957
|
+
"rustix 1.1.2",
|
|
2958
|
+
"serde",
|
|
2959
|
+
"serde_derive",
|
|
2960
|
+
"sha2",
|
|
2961
|
+
"toml",
|
|
2962
|
+
"windows-sys 0.60.2",
|
|
2963
|
+
"zstd",
|
|
2964
|
+
]
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "wasmtime-internal-component-macro"
|
|
2968
|
+
version = "39.0.1"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "c933104f57d27dd1e6c7bd9ee5df3242bdd1962d9381bc08fa5d4e60e1f5ebdf"
|
|
2971
|
+
dependencies = [
|
|
2972
|
+
"anyhow",
|
|
2973
|
+
"proc-macro2",
|
|
2974
|
+
"quote",
|
|
2975
|
+
"syn",
|
|
2976
|
+
"wasmtime-internal-component-util",
|
|
2977
|
+
"wasmtime-internal-wit-bindgen",
|
|
2978
|
+
"wit-parser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "wasmtime-internal-component-util"
|
|
2983
|
+
version = "39.0.1"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "63ef2a95a5dbaa70fc3ef682ea8997e51cdd819b4d157a1100477cf43949d454"
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "wasmtime-internal-cranelift"
|
|
2989
|
+
version = "39.0.1"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "73122df6a8cf417ce486a94e844d3a60797217ce7ae69653e0ee9e28269e0fa5"
|
|
2992
|
+
dependencies = [
|
|
2993
|
+
"anyhow",
|
|
2994
|
+
"cfg-if",
|
|
2995
|
+
"cranelift-codegen",
|
|
2996
|
+
"cranelift-control",
|
|
2997
|
+
"cranelift-entity",
|
|
2998
|
+
"cranelift-frontend",
|
|
2999
|
+
"cranelift-native",
|
|
3000
|
+
"gimli",
|
|
3001
|
+
"itertools 0.14.0",
|
|
3002
|
+
"log",
|
|
3003
|
+
"object",
|
|
3004
|
+
"pulley-interpreter",
|
|
3005
|
+
"smallvec",
|
|
3006
|
+
"target-lexicon",
|
|
3007
|
+
"thiserror 2.0.17",
|
|
3008
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3009
|
+
"wasmtime-environ",
|
|
3010
|
+
"wasmtime-internal-math",
|
|
3011
|
+
"wasmtime-internal-unwinder",
|
|
3012
|
+
"wasmtime-internal-versioned-export-macros",
|
|
3013
|
+
]
|
|
3014
|
+
|
|
3015
|
+
[[package]]
|
|
3016
|
+
name = "wasmtime-internal-fiber"
|
|
3017
|
+
version = "39.0.1"
|
|
3018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3019
|
+
checksum = "54ead059e58b54a7abbe0bfb9457b3833ebd2ad84326c248a835ff76d64c7c6f"
|
|
3020
|
+
dependencies = [
|
|
3021
|
+
"anyhow",
|
|
3022
|
+
"cc",
|
|
3023
|
+
"cfg-if",
|
|
3024
|
+
"libc",
|
|
3025
|
+
"rustix 1.1.2",
|
|
3026
|
+
"wasmtime-internal-versioned-export-macros",
|
|
3027
|
+
"windows-sys 0.60.2",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "wasmtime-internal-jit-debug"
|
|
3032
|
+
version = "39.0.1"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "3af620a4ac1623298c90d3736644e12d66974951d1e38d0464798de85c984e17"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"cc",
|
|
3037
|
+
"object",
|
|
3038
|
+
"rustix 1.1.2",
|
|
3039
|
+
"wasmtime-internal-versioned-export-macros",
|
|
3040
|
+
]
|
|
3041
|
+
|
|
3042
|
+
[[package]]
|
|
3043
|
+
name = "wasmtime-internal-jit-icache-coherence"
|
|
3044
|
+
version = "39.0.1"
|
|
3045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
+
checksum = "b97ccd36e25390258ce6720add639ffe5a7d81a5c904350aa08f5bbc60433d22"
|
|
3047
|
+
dependencies = [
|
|
3048
|
+
"anyhow",
|
|
3049
|
+
"cfg-if",
|
|
3050
|
+
"libc",
|
|
3051
|
+
"windows-sys 0.60.2",
|
|
3052
|
+
]
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "wasmtime-internal-math"
|
|
3056
|
+
version = "39.0.1"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "cd1b856e1bbf0230ab560ba4204e944b141971adc4e6cdf3feb6979c1a7b7953"
|
|
3059
|
+
dependencies = [
|
|
3060
|
+
"libm",
|
|
3061
|
+
]
|
|
3062
|
+
|
|
3063
|
+
[[package]]
|
|
3064
|
+
name = "wasmtime-internal-slab"
|
|
3065
|
+
version = "39.0.1"
|
|
3066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
+
checksum = "8908e71a780b97cbd3d8f3a0c446ac8df963069e0f3f38c9eace4f199d4d3e65"
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "wasmtime-internal-unwinder"
|
|
3071
|
+
version = "39.0.1"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "fb9c2f8223a0ef96527f0446b80c7d0d9bb0577c7b918e3104bd6d4cdba1d101"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"anyhow",
|
|
3076
|
+
"cfg-if",
|
|
3077
|
+
"cranelift-codegen",
|
|
3078
|
+
"log",
|
|
3079
|
+
"object",
|
|
3080
|
+
]
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "wasmtime-internal-versioned-export-macros"
|
|
3084
|
+
version = "39.0.1"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "2b0fb82cdbffd6cafc812c734a22fa753102888b8760ecf6a08cbb50367a458a"
|
|
3087
|
+
dependencies = [
|
|
3088
|
+
"proc-macro2",
|
|
3089
|
+
"quote",
|
|
3090
|
+
"syn",
|
|
3091
|
+
]
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "wasmtime-internal-winch"
|
|
3095
|
+
version = "39.0.1"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "f1cfd68149cef86afd9a6c9b51e461266dfa66b37b4c6fdf1201ddbf7f906271"
|
|
3098
|
+
dependencies = [
|
|
3099
|
+
"anyhow",
|
|
3100
|
+
"cranelift-codegen",
|
|
3101
|
+
"gimli",
|
|
3102
|
+
"log",
|
|
3103
|
+
"object",
|
|
3104
|
+
"target-lexicon",
|
|
3105
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3106
|
+
"wasmtime-environ",
|
|
3107
|
+
"wasmtime-internal-cranelift",
|
|
3108
|
+
"winch-codegen",
|
|
3109
|
+
]
|
|
3110
|
+
|
|
3111
|
+
[[package]]
|
|
3112
|
+
name = "wasmtime-internal-wit-bindgen"
|
|
3113
|
+
version = "39.0.1"
|
|
3114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
+
checksum = "a628437073400148f1ba2b55beb60eb376dc5ca538745994c83332b037d1f3fa"
|
|
3116
|
+
dependencies = [
|
|
3117
|
+
"anyhow",
|
|
3118
|
+
"bitflags",
|
|
3119
|
+
"heck 0.5.0",
|
|
3120
|
+
"indexmap",
|
|
3121
|
+
"wit-parser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3122
|
+
]
|
|
3123
|
+
|
|
3124
|
+
[[package]]
|
|
3125
|
+
name = "wasmtime-wasi"
|
|
3126
|
+
version = "39.0.1"
|
|
3127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
+
checksum = "517604b1ce13a56ae3e360217095d7d4db90e84deaa3fba078877c2b80cc5851"
|
|
3129
|
+
dependencies = [
|
|
3130
|
+
"anyhow",
|
|
3131
|
+
"async-trait",
|
|
3132
|
+
"bitflags",
|
|
3133
|
+
"bytes",
|
|
3134
|
+
"cap-fs-ext",
|
|
3135
|
+
"cap-net-ext",
|
|
3136
|
+
"cap-rand",
|
|
3137
|
+
"cap-std",
|
|
3138
|
+
"cap-time-ext",
|
|
3139
|
+
"fs-set-times",
|
|
3140
|
+
"futures",
|
|
3141
|
+
"io-extras",
|
|
3142
|
+
"io-lifetimes",
|
|
3143
|
+
"rustix 1.1.2",
|
|
3144
|
+
"system-interface",
|
|
3145
|
+
"thiserror 2.0.17",
|
|
3146
|
+
"tokio",
|
|
3147
|
+
"tracing",
|
|
3148
|
+
"url",
|
|
3149
|
+
"wasmtime",
|
|
3150
|
+
"wasmtime-wasi-io",
|
|
3151
|
+
"wiggle",
|
|
3152
|
+
"windows-sys 0.60.2",
|
|
3153
|
+
]
|
|
3154
|
+
|
|
3155
|
+
[[package]]
|
|
3156
|
+
name = "wasmtime-wasi-io"
|
|
3157
|
+
version = "39.0.1"
|
|
3158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3159
|
+
checksum = "7ec66fc94ceb9497d62a3d082bd2cce10348975795516553df4cd89f7d5fc14b"
|
|
3160
|
+
dependencies = [
|
|
3161
|
+
"anyhow",
|
|
3162
|
+
"async-trait",
|
|
3163
|
+
"bytes",
|
|
3164
|
+
"futures",
|
|
3165
|
+
"wasmtime",
|
|
3166
|
+
]
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "wast"
|
|
3170
|
+
version = "35.0.2"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"leb128",
|
|
3175
|
+
]
|
|
3176
|
+
|
|
3177
|
+
[[package]]
|
|
3178
|
+
name = "wast"
|
|
3179
|
+
version = "243.0.0"
|
|
3180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
+
checksum = "df21d01c2d91e46cb7a221d79e58a2d210ea02020d57c092e79255cc2999ca7f"
|
|
3182
|
+
dependencies = [
|
|
3183
|
+
"bumpalo",
|
|
3184
|
+
"leb128fmt",
|
|
3185
|
+
"memchr",
|
|
3186
|
+
"unicode-width",
|
|
3187
|
+
"wasm-encoder 0.243.0",
|
|
3188
|
+
]
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "wat"
|
|
3192
|
+
version = "1.243.0"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "226a9a91cd80a50449312fef0c75c23478fcecfcc4092bdebe1dc8e760ef521b"
|
|
3195
|
+
dependencies = [
|
|
3196
|
+
"wast 243.0.0",
|
|
3197
|
+
]
|
|
3198
|
+
|
|
3199
|
+
[[package]]
|
|
3200
|
+
name = "web-sys"
|
|
3201
|
+
version = "0.3.83"
|
|
3202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3204
|
+
dependencies = [
|
|
3205
|
+
"js-sys",
|
|
3206
|
+
"wasm-bindgen",
|
|
3207
|
+
]
|
|
3208
|
+
|
|
3209
|
+
[[package]]
|
|
3210
|
+
name = "wiggle"
|
|
3211
|
+
version = "39.0.1"
|
|
3212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
+
checksum = "bb9c745158119785cf3098c97151cfcc33104ade6489bfa158b73d3f5979fa24"
|
|
3214
|
+
dependencies = [
|
|
3215
|
+
"anyhow",
|
|
3216
|
+
"bitflags",
|
|
3217
|
+
"thiserror 2.0.17",
|
|
3218
|
+
"tracing",
|
|
3219
|
+
"wasmtime",
|
|
3220
|
+
"wiggle-macro",
|
|
3221
|
+
]
|
|
3222
|
+
|
|
3223
|
+
[[package]]
|
|
3224
|
+
name = "wiggle-generate"
|
|
3225
|
+
version = "39.0.1"
|
|
3226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3227
|
+
checksum = "b8a98d02cd1ba87ca6039f28f4f4c0b53a9ff2684f5f2640f471af9bc608b9d9"
|
|
3228
|
+
dependencies = [
|
|
3229
|
+
"anyhow",
|
|
3230
|
+
"heck 0.5.0",
|
|
3231
|
+
"proc-macro2",
|
|
3232
|
+
"quote",
|
|
3233
|
+
"syn",
|
|
3234
|
+
"witx",
|
|
3235
|
+
]
|
|
3236
|
+
|
|
3237
|
+
[[package]]
|
|
3238
|
+
name = "wiggle-macro"
|
|
3239
|
+
version = "39.0.1"
|
|
3240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3241
|
+
checksum = "6a111938ed6e662d5f5036bb3cac8d10d5bea77a536885d6d4a4667c9cba97a2"
|
|
3242
|
+
dependencies = [
|
|
3243
|
+
"proc-macro2",
|
|
3244
|
+
"quote",
|
|
3245
|
+
"syn",
|
|
3246
|
+
"wiggle-generate",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "winapi"
|
|
3251
|
+
version = "0.3.9"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"winapi-i686-pc-windows-gnu",
|
|
3256
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3257
|
+
]
|
|
3258
|
+
|
|
3259
|
+
[[package]]
|
|
3260
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3261
|
+
version = "0.4.0"
|
|
3262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3264
|
+
|
|
3265
|
+
[[package]]
|
|
3266
|
+
name = "winapi-util"
|
|
3267
|
+
version = "0.1.11"
|
|
3268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3269
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3270
|
+
dependencies = [
|
|
3271
|
+
"windows-sys 0.61.2",
|
|
3272
|
+
]
|
|
3273
|
+
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3276
|
+
version = "0.4.0"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3279
|
+
|
|
3280
|
+
[[package]]
|
|
3281
|
+
name = "winch-codegen"
|
|
3282
|
+
version = "39.0.1"
|
|
3283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3284
|
+
checksum = "b1de5a648102e39c8e817ed25e3820f4b9772f3c9c930984f32737be60e3156b"
|
|
3285
|
+
dependencies = [
|
|
3286
|
+
"anyhow",
|
|
3287
|
+
"cranelift-assembler-x64",
|
|
3288
|
+
"cranelift-codegen",
|
|
3289
|
+
"gimli",
|
|
3290
|
+
"regalloc2",
|
|
3291
|
+
"smallvec",
|
|
3292
|
+
"target-lexicon",
|
|
3293
|
+
"thiserror 2.0.17",
|
|
3294
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3295
|
+
"wasmtime-environ",
|
|
3296
|
+
"wasmtime-internal-cranelift",
|
|
3297
|
+
"wasmtime-internal-math",
|
|
3298
|
+
]
|
|
3299
|
+
|
|
3300
|
+
[[package]]
|
|
3301
|
+
name = "windows-core"
|
|
3302
|
+
version = "0.62.2"
|
|
3303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3305
|
+
dependencies = [
|
|
3306
|
+
"windows-implement",
|
|
3307
|
+
"windows-interface",
|
|
3308
|
+
"windows-link",
|
|
3309
|
+
"windows-result",
|
|
3310
|
+
"windows-strings",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "windows-implement"
|
|
3315
|
+
version = "0.60.2"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"proc-macro2",
|
|
3320
|
+
"quote",
|
|
3321
|
+
"syn",
|
|
3322
|
+
]
|
|
3323
|
+
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "windows-interface"
|
|
3326
|
+
version = "0.59.3"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3329
|
+
dependencies = [
|
|
3330
|
+
"proc-macro2",
|
|
3331
|
+
"quote",
|
|
3332
|
+
"syn",
|
|
3333
|
+
]
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "windows-link"
|
|
3337
|
+
version = "0.2.1"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3340
|
+
|
|
3341
|
+
[[package]]
|
|
3342
|
+
name = "windows-result"
|
|
3343
|
+
version = "0.4.1"
|
|
3344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3345
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3346
|
+
dependencies = [
|
|
3347
|
+
"windows-link",
|
|
3348
|
+
]
|
|
3349
|
+
|
|
3350
|
+
[[package]]
|
|
3351
|
+
name = "windows-strings"
|
|
3352
|
+
version = "0.5.1"
|
|
3353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3354
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3355
|
+
dependencies = [
|
|
3356
|
+
"windows-link",
|
|
3357
|
+
]
|
|
3358
|
+
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "windows-sys"
|
|
3361
|
+
version = "0.59.0"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3364
|
+
dependencies = [
|
|
3365
|
+
"windows-targets 0.52.6",
|
|
3366
|
+
]
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "windows-sys"
|
|
3370
|
+
version = "0.60.2"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3373
|
+
dependencies = [
|
|
3374
|
+
"windows-targets 0.53.5",
|
|
3375
|
+
]
|
|
3376
|
+
|
|
3377
|
+
[[package]]
|
|
3378
|
+
name = "windows-sys"
|
|
3379
|
+
version = "0.61.2"
|
|
3380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3382
|
+
dependencies = [
|
|
3383
|
+
"windows-link",
|
|
3384
|
+
]
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "windows-targets"
|
|
3388
|
+
version = "0.52.6"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3393
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3394
|
+
"windows_i686_gnu 0.52.6",
|
|
3395
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3396
|
+
"windows_i686_msvc 0.52.6",
|
|
3397
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3398
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3399
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "windows-targets"
|
|
3404
|
+
version = "0.53.5"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"windows-link",
|
|
3409
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3410
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3411
|
+
"windows_i686_gnu 0.53.1",
|
|
3412
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3413
|
+
"windows_i686_msvc 0.53.1",
|
|
3414
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3415
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3416
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3417
|
+
]
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "windows_aarch64_gnullvm"
|
|
3421
|
+
version = "0.52.6"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3424
|
+
|
|
3425
|
+
[[package]]
|
|
3426
|
+
name = "windows_aarch64_gnullvm"
|
|
3427
|
+
version = "0.53.1"
|
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3430
|
+
|
|
3431
|
+
[[package]]
|
|
3432
|
+
name = "windows_aarch64_msvc"
|
|
3433
|
+
version = "0.52.6"
|
|
3434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3436
|
+
|
|
3437
|
+
[[package]]
|
|
3438
|
+
name = "windows_aarch64_msvc"
|
|
3439
|
+
version = "0.53.1"
|
|
3440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3442
|
+
|
|
3443
|
+
[[package]]
|
|
3444
|
+
name = "windows_i686_gnu"
|
|
3445
|
+
version = "0.52.6"
|
|
3446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3448
|
+
|
|
3449
|
+
[[package]]
|
|
3450
|
+
name = "windows_i686_gnu"
|
|
3451
|
+
version = "0.53.1"
|
|
3452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3453
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3454
|
+
|
|
3455
|
+
[[package]]
|
|
3456
|
+
name = "windows_i686_gnullvm"
|
|
3457
|
+
version = "0.52.6"
|
|
3458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3459
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3460
|
+
|
|
3461
|
+
[[package]]
|
|
3462
|
+
name = "windows_i686_gnullvm"
|
|
3463
|
+
version = "0.53.1"
|
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3465
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "windows_i686_msvc"
|
|
3469
|
+
version = "0.52.6"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3472
|
+
|
|
3473
|
+
[[package]]
|
|
3474
|
+
name = "windows_i686_msvc"
|
|
3475
|
+
version = "0.53.1"
|
|
3476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "windows_x86_64_gnu"
|
|
3481
|
+
version = "0.52.6"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3484
|
+
|
|
3485
|
+
[[package]]
|
|
3486
|
+
name = "windows_x86_64_gnu"
|
|
3487
|
+
version = "0.53.1"
|
|
3488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3489
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3490
|
+
|
|
3491
|
+
[[package]]
|
|
3492
|
+
name = "windows_x86_64_gnullvm"
|
|
3493
|
+
version = "0.52.6"
|
|
3494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3495
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "windows_x86_64_gnullvm"
|
|
3499
|
+
version = "0.53.1"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3502
|
+
|
|
3503
|
+
[[package]]
|
|
3504
|
+
name = "windows_x86_64_msvc"
|
|
3505
|
+
version = "0.52.6"
|
|
3506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3507
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "windows_x86_64_msvc"
|
|
3511
|
+
version = "0.53.1"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3514
|
+
|
|
3515
|
+
[[package]]
|
|
3516
|
+
name = "winnow"
|
|
3517
|
+
version = "0.7.14"
|
|
3518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "winx"
|
|
3523
|
+
version = "0.36.4"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"bitflags",
|
|
3528
|
+
"windows-sys 0.59.0",
|
|
3529
|
+
]
|
|
3530
|
+
|
|
3531
|
+
[[package]]
|
|
3532
|
+
name = "wit-bindgen"
|
|
3533
|
+
version = "0.46.0"
|
|
3534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3535
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "wit-component"
|
|
3539
|
+
version = "0.240.0"
|
|
3540
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
3541
|
+
dependencies = [
|
|
3542
|
+
"anyhow",
|
|
3543
|
+
"bitflags",
|
|
3544
|
+
"indexmap",
|
|
3545
|
+
"log",
|
|
3546
|
+
"serde",
|
|
3547
|
+
"serde_derive",
|
|
3548
|
+
"serde_json",
|
|
3549
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3550
|
+
"wasm-metadata 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3551
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3552
|
+
"wit-parser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3553
|
+
]
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "wit-dylib"
|
|
3557
|
+
version = "0.240.0"
|
|
3558
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
3559
|
+
dependencies = [
|
|
3560
|
+
"anyhow",
|
|
3561
|
+
"indexmap",
|
|
3562
|
+
"wasm-encoder 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3563
|
+
"wit-parser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3564
|
+
]
|
|
3565
|
+
|
|
3566
|
+
[[package]]
|
|
3567
|
+
name = "wit-dylib-ffi"
|
|
3568
|
+
version = "0.1.0"
|
|
3569
|
+
source = "git+https://github.com/dicej/wasm-tools?rev=b072b0ca#b072b0caa8307779558d96a62bc9522abda6a7fb"
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "wit-parser"
|
|
3573
|
+
version = "0.240.0"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "9875ea3fa272f57cc1fc50f225a7b94021a7878c484b33792bccad0d93223439"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"anyhow",
|
|
3578
|
+
"id-arena",
|
|
3579
|
+
"indexmap",
|
|
3580
|
+
"log",
|
|
3581
|
+
"semver",
|
|
3582
|
+
"serde",
|
|
3583
|
+
"serde_derive",
|
|
3584
|
+
"serde_json",
|
|
3585
|
+
"unicode-xid",
|
|
3586
|
+
"wasmparser 0.240.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3587
|
+
]
|
|
3588
|
+
|
|
3589
|
+
[[package]]
|
|
3590
|
+
name = "wit-parser"
|
|
3591
|
+
version = "0.240.0"
|
|
3592
|
+
source = "git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24#e2bb0a249b038c54e404394f60411f4e8aa914c4"
|
|
3593
|
+
dependencies = [
|
|
3594
|
+
"anyhow",
|
|
3595
|
+
"id-arena",
|
|
3596
|
+
"indexmap",
|
|
3597
|
+
"log",
|
|
3598
|
+
"semver",
|
|
3599
|
+
"serde",
|
|
3600
|
+
"serde_derive",
|
|
3601
|
+
"serde_json",
|
|
3602
|
+
"unicode-xid",
|
|
3603
|
+
"wasmparser 0.240.0 (git+https://github.com/bytecodealliance/wasm-tools?rev=e2bb0a24)",
|
|
3604
|
+
]
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "witx"
|
|
3608
|
+
version = "0.9.1"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
3611
|
+
dependencies = [
|
|
3612
|
+
"anyhow",
|
|
3613
|
+
"log",
|
|
3614
|
+
"thiserror 1.0.69",
|
|
3615
|
+
"wast 35.0.2",
|
|
3616
|
+
]
|
|
3617
|
+
|
|
3618
|
+
[[package]]
|
|
3619
|
+
name = "writeable"
|
|
3620
|
+
version = "0.6.2"
|
|
3621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3622
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3623
|
+
|
|
3624
|
+
[[package]]
|
|
3625
|
+
name = "xattr"
|
|
3626
|
+
version = "1.6.1"
|
|
3627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3628
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
3629
|
+
dependencies = [
|
|
3630
|
+
"libc",
|
|
3631
|
+
"rustix 1.1.2",
|
|
3632
|
+
]
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "xz2"
|
|
3636
|
+
version = "0.1.7"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
3639
|
+
dependencies = [
|
|
3640
|
+
"lzma-sys",
|
|
3641
|
+
]
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "yoke"
|
|
3645
|
+
version = "0.8.1"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3648
|
+
dependencies = [
|
|
3649
|
+
"stable_deref_trait",
|
|
3650
|
+
"yoke-derive",
|
|
3651
|
+
"zerofrom",
|
|
3652
|
+
]
|
|
3653
|
+
|
|
3654
|
+
[[package]]
|
|
3655
|
+
name = "yoke-derive"
|
|
3656
|
+
version = "0.8.1"
|
|
3657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3658
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3659
|
+
dependencies = [
|
|
3660
|
+
"proc-macro2",
|
|
3661
|
+
"quote",
|
|
3662
|
+
"syn",
|
|
3663
|
+
"synstructure",
|
|
3664
|
+
]
|
|
3665
|
+
|
|
3666
|
+
[[package]]
|
|
3667
|
+
name = "zerocopy"
|
|
3668
|
+
version = "0.8.31"
|
|
3669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3670
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
3671
|
+
dependencies = [
|
|
3672
|
+
"zerocopy-derive",
|
|
3673
|
+
]
|
|
3674
|
+
|
|
3675
|
+
[[package]]
|
|
3676
|
+
name = "zerocopy-derive"
|
|
3677
|
+
version = "0.8.31"
|
|
3678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
3680
|
+
dependencies = [
|
|
3681
|
+
"proc-macro2",
|
|
3682
|
+
"quote",
|
|
3683
|
+
"syn",
|
|
3684
|
+
]
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "zerofrom"
|
|
3688
|
+
version = "0.1.6"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3691
|
+
dependencies = [
|
|
3692
|
+
"zerofrom-derive",
|
|
3693
|
+
]
|
|
3694
|
+
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "zerofrom-derive"
|
|
3697
|
+
version = "0.1.6"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3700
|
+
dependencies = [
|
|
3701
|
+
"proc-macro2",
|
|
3702
|
+
"quote",
|
|
3703
|
+
"syn",
|
|
3704
|
+
"synstructure",
|
|
3705
|
+
]
|
|
3706
|
+
|
|
3707
|
+
[[package]]
|
|
3708
|
+
name = "zeroize"
|
|
3709
|
+
version = "1.8.2"
|
|
3710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3711
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3712
|
+
dependencies = [
|
|
3713
|
+
"zeroize_derive",
|
|
3714
|
+
]
|
|
3715
|
+
|
|
3716
|
+
[[package]]
|
|
3717
|
+
name = "zeroize_derive"
|
|
3718
|
+
version = "1.4.2"
|
|
3719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3720
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
3721
|
+
dependencies = [
|
|
3722
|
+
"proc-macro2",
|
|
3723
|
+
"quote",
|
|
3724
|
+
"syn",
|
|
3725
|
+
]
|
|
3726
|
+
|
|
3727
|
+
[[package]]
|
|
3728
|
+
name = "zerotrie"
|
|
3729
|
+
version = "0.2.3"
|
|
3730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3732
|
+
dependencies = [
|
|
3733
|
+
"displaydoc",
|
|
3734
|
+
"yoke",
|
|
3735
|
+
"zerofrom",
|
|
3736
|
+
]
|
|
3737
|
+
|
|
3738
|
+
[[package]]
|
|
3739
|
+
name = "zerovec"
|
|
3740
|
+
version = "0.11.5"
|
|
3741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3742
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3743
|
+
dependencies = [
|
|
3744
|
+
"yoke",
|
|
3745
|
+
"zerofrom",
|
|
3746
|
+
"zerovec-derive",
|
|
3747
|
+
]
|
|
3748
|
+
|
|
3749
|
+
[[package]]
|
|
3750
|
+
name = "zerovec-derive"
|
|
3751
|
+
version = "0.11.2"
|
|
3752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3753
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3754
|
+
dependencies = [
|
|
3755
|
+
"proc-macro2",
|
|
3756
|
+
"quote",
|
|
3757
|
+
"syn",
|
|
3758
|
+
]
|
|
3759
|
+
|
|
3760
|
+
[[package]]
|
|
3761
|
+
name = "zip"
|
|
3762
|
+
version = "2.4.2"
|
|
3763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
+
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
|
|
3765
|
+
dependencies = [
|
|
3766
|
+
"aes",
|
|
3767
|
+
"arbitrary",
|
|
3768
|
+
"bzip2",
|
|
3769
|
+
"constant_time_eq",
|
|
3770
|
+
"crc32fast",
|
|
3771
|
+
"crossbeam-utils",
|
|
3772
|
+
"deflate64",
|
|
3773
|
+
"displaydoc",
|
|
3774
|
+
"flate2",
|
|
3775
|
+
"getrandom 0.3.4",
|
|
3776
|
+
"hmac",
|
|
3777
|
+
"indexmap",
|
|
3778
|
+
"lzma-rs",
|
|
3779
|
+
"memchr",
|
|
3780
|
+
"pbkdf2",
|
|
3781
|
+
"sha1",
|
|
3782
|
+
"thiserror 2.0.17",
|
|
3783
|
+
"time",
|
|
3784
|
+
"xz2",
|
|
3785
|
+
"zeroize",
|
|
3786
|
+
"zopfli",
|
|
3787
|
+
"zstd",
|
|
3788
|
+
]
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "zopfli"
|
|
3792
|
+
version = "0.8.3"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
3795
|
+
dependencies = [
|
|
3796
|
+
"bumpalo",
|
|
3797
|
+
"crc32fast",
|
|
3798
|
+
"log",
|
|
3799
|
+
"simd-adler32",
|
|
3800
|
+
]
|
|
3801
|
+
|
|
3802
|
+
[[package]]
|
|
3803
|
+
name = "zstd"
|
|
3804
|
+
version = "0.13.3"
|
|
3805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3806
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3807
|
+
dependencies = [
|
|
3808
|
+
"zstd-safe",
|
|
3809
|
+
]
|
|
3810
|
+
|
|
3811
|
+
[[package]]
|
|
3812
|
+
name = "zstd-safe"
|
|
3813
|
+
version = "7.2.4"
|
|
3814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3816
|
+
dependencies = [
|
|
3817
|
+
"zstd-sys",
|
|
3818
|
+
]
|
|
3819
|
+
|
|
3820
|
+
[[package]]
|
|
3821
|
+
name = "zstd-sys"
|
|
3822
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3824
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3825
|
+
dependencies = [
|
|
3826
|
+
"cc",
|
|
3827
|
+
"pkg-config",
|
|
3828
|
+
]
|