incr-concurrent 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.
- incr_concurrent-0.1.0/Cargo.lock +1719 -0
- incr_concurrent-0.1.0/Cargo.toml +3 -0
- incr_concurrent-0.1.0/PKG-INFO +7 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/Cargo.toml +48 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/README.md +111 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/collection_operators.rs +72 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/comparison.rs +305 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/concurrency_primitives.rs +673 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/concurrent_throughput.rs +66 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/contended_concurrency.rs +279 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/performance.rs +277 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/benches/regression.rs +85 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/arena.rs +1114 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/collection.rs +1024 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/collection_proptest.rs +156 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/handle.rs +330 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/lib.rs +24 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/node.rs +844 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/nodes_store.rs +282 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/registry.rs +779 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/runtime.rs +2440 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/runtime_concurrent_test.rs +710 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/runtime_proptest.rs +213 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/sorted_collection.rs +467 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/state.rs +333 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/src/value.rs +356 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/tests/collection_property.rs +238 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/tests/integration.rs +273 -0
- incr_concurrent-0.1.0/crates/incr-concurrent/tests/property.rs +160 -0
- incr_concurrent-0.1.0/crates/incr-concurrent-python/Cargo.toml +14 -0
- incr_concurrent-0.1.0/crates/incr-concurrent-python/src/lib.rs +549 -0
- incr_concurrent-0.1.0/pyproject.toml +15 -0
|
@@ -0,0 +1,1719 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anes"
|
|
22
|
+
version = "0.1.6"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.14"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anyhow"
|
|
34
|
+
version = "1.0.102"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "atomic-waker"
|
|
40
|
+
version = "1.1.2"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "autocfg"
|
|
46
|
+
version = "1.5.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "axum"
|
|
52
|
+
version = "0.8.8"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"axum-core",
|
|
57
|
+
"bytes",
|
|
58
|
+
"form_urlencoded",
|
|
59
|
+
"futures-util",
|
|
60
|
+
"http",
|
|
61
|
+
"http-body",
|
|
62
|
+
"http-body-util",
|
|
63
|
+
"hyper",
|
|
64
|
+
"hyper-util",
|
|
65
|
+
"itoa",
|
|
66
|
+
"matchit",
|
|
67
|
+
"memchr",
|
|
68
|
+
"mime",
|
|
69
|
+
"percent-encoding",
|
|
70
|
+
"pin-project-lite",
|
|
71
|
+
"serde_core",
|
|
72
|
+
"serde_json",
|
|
73
|
+
"serde_path_to_error",
|
|
74
|
+
"serde_urlencoded",
|
|
75
|
+
"sync_wrapper",
|
|
76
|
+
"tokio",
|
|
77
|
+
"tower",
|
|
78
|
+
"tower-layer",
|
|
79
|
+
"tower-service",
|
|
80
|
+
"tracing",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "axum-core"
|
|
85
|
+
version = "0.5.6"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"bytes",
|
|
90
|
+
"futures-core",
|
|
91
|
+
"http",
|
|
92
|
+
"http-body",
|
|
93
|
+
"http-body-util",
|
|
94
|
+
"mime",
|
|
95
|
+
"pin-project-lite",
|
|
96
|
+
"sync_wrapper",
|
|
97
|
+
"tower-layer",
|
|
98
|
+
"tower-service",
|
|
99
|
+
"tracing",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "bit-set"
|
|
104
|
+
version = "0.8.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"bit-vec",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bit-vec"
|
|
113
|
+
version = "0.8.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "bitflags"
|
|
119
|
+
version = "2.11.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "boxcar"
|
|
125
|
+
version = "0.2.14"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "bumpalo"
|
|
131
|
+
version = "3.20.2"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bytes"
|
|
137
|
+
version = "1.11.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "cast"
|
|
143
|
+
version = "0.3.0"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "cfg-if"
|
|
149
|
+
version = "1.0.4"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "ciborium"
|
|
155
|
+
version = "0.2.2"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
158
|
+
dependencies = [
|
|
159
|
+
"ciborium-io",
|
|
160
|
+
"ciborium-ll",
|
|
161
|
+
"serde",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "ciborium-io"
|
|
166
|
+
version = "0.2.2"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "ciborium-ll"
|
|
172
|
+
version = "0.2.2"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"ciborium-io",
|
|
177
|
+
"half",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "clap"
|
|
182
|
+
version = "4.6.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"clap_builder",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "clap_builder"
|
|
191
|
+
version = "4.6.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"anstyle",
|
|
196
|
+
"clap_lex",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "clap_lex"
|
|
201
|
+
version = "1.1.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "criterion"
|
|
207
|
+
version = "0.5.1"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"anes",
|
|
212
|
+
"cast",
|
|
213
|
+
"ciborium",
|
|
214
|
+
"clap",
|
|
215
|
+
"criterion-plot",
|
|
216
|
+
"is-terminal",
|
|
217
|
+
"itertools",
|
|
218
|
+
"num-traits",
|
|
219
|
+
"once_cell",
|
|
220
|
+
"oorandom",
|
|
221
|
+
"plotters",
|
|
222
|
+
"rayon",
|
|
223
|
+
"regex",
|
|
224
|
+
"serde",
|
|
225
|
+
"serde_derive",
|
|
226
|
+
"serde_json",
|
|
227
|
+
"tinytemplate",
|
|
228
|
+
"walkdir",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "criterion-plot"
|
|
233
|
+
version = "0.5.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"cast",
|
|
238
|
+
"itertools",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "crossbeam-deque"
|
|
243
|
+
version = "0.8.6"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"crossbeam-epoch",
|
|
248
|
+
"crossbeam-utils",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "crossbeam-epoch"
|
|
253
|
+
version = "0.9.18"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"crossbeam-utils",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "crossbeam-queue"
|
|
262
|
+
version = "0.3.12"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"crossbeam-utils",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "crossbeam-utils"
|
|
271
|
+
version = "0.8.21"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "crunchy"
|
|
277
|
+
version = "0.2.4"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "either"
|
|
283
|
+
version = "1.15.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "equivalent"
|
|
289
|
+
version = "1.0.2"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "errno"
|
|
295
|
+
version = "0.3.14"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"libc",
|
|
300
|
+
"windows-sys",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "fastrand"
|
|
305
|
+
version = "2.4.0"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "fnv"
|
|
311
|
+
version = "1.0.7"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "foldhash"
|
|
317
|
+
version = "0.1.5"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "form_urlencoded"
|
|
323
|
+
version = "1.2.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"percent-encoding",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "futures-channel"
|
|
332
|
+
version = "0.3.32"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"futures-core",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "futures-core"
|
|
341
|
+
version = "0.3.32"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "futures-task"
|
|
347
|
+
version = "0.3.32"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "futures-util"
|
|
353
|
+
version = "0.3.32"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"futures-core",
|
|
358
|
+
"futures-task",
|
|
359
|
+
"pin-project-lite",
|
|
360
|
+
"slab",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "getrandom"
|
|
365
|
+
version = "0.2.17"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"cfg-if",
|
|
370
|
+
"libc",
|
|
371
|
+
"wasi",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "getrandom"
|
|
376
|
+
version = "0.3.4"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cfg-if",
|
|
381
|
+
"libc",
|
|
382
|
+
"r-efi 5.3.0",
|
|
383
|
+
"wasip2",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "getrandom"
|
|
388
|
+
version = "0.4.2"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"cfg-if",
|
|
393
|
+
"libc",
|
|
394
|
+
"r-efi 6.0.0",
|
|
395
|
+
"wasip2",
|
|
396
|
+
"wasip3",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "half"
|
|
401
|
+
version = "2.7.1"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"cfg-if",
|
|
406
|
+
"crunchy",
|
|
407
|
+
"zerocopy",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "hashbrown"
|
|
412
|
+
version = "0.15.5"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"allocator-api2",
|
|
417
|
+
"equivalent",
|
|
418
|
+
"foldhash",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "hashbrown"
|
|
423
|
+
version = "0.16.1"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "hashlink"
|
|
429
|
+
version = "0.10.0"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"hashbrown 0.15.5",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "heck"
|
|
438
|
+
version = "0.5.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "hermit-abi"
|
|
444
|
+
version = "0.5.2"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "http"
|
|
450
|
+
version = "1.4.0"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"bytes",
|
|
455
|
+
"itoa",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "http-body"
|
|
460
|
+
version = "1.0.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"bytes",
|
|
465
|
+
"http",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "http-body-util"
|
|
470
|
+
version = "0.1.3"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"bytes",
|
|
475
|
+
"futures-core",
|
|
476
|
+
"http",
|
|
477
|
+
"http-body",
|
|
478
|
+
"pin-project-lite",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "httparse"
|
|
483
|
+
version = "1.10.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "httpdate"
|
|
489
|
+
version = "1.0.3"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "hyper"
|
|
495
|
+
version = "1.9.0"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"atomic-waker",
|
|
500
|
+
"bytes",
|
|
501
|
+
"futures-channel",
|
|
502
|
+
"futures-core",
|
|
503
|
+
"http",
|
|
504
|
+
"http-body",
|
|
505
|
+
"httparse",
|
|
506
|
+
"httpdate",
|
|
507
|
+
"itoa",
|
|
508
|
+
"pin-project-lite",
|
|
509
|
+
"smallvec",
|
|
510
|
+
"tokio",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "hyper-util"
|
|
515
|
+
version = "0.1.20"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"bytes",
|
|
520
|
+
"http",
|
|
521
|
+
"http-body",
|
|
522
|
+
"hyper",
|
|
523
|
+
"pin-project-lite",
|
|
524
|
+
"tokio",
|
|
525
|
+
"tower-service",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "id-arena"
|
|
530
|
+
version = "2.3.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "incr-compute"
|
|
536
|
+
version = "0.1.0"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"criterion",
|
|
539
|
+
"proptest",
|
|
540
|
+
"rand 0.8.5",
|
|
541
|
+
"rustc-hash",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "incr-concurrent"
|
|
546
|
+
version = "0.1.0"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"criterion",
|
|
549
|
+
"crossbeam-epoch",
|
|
550
|
+
"proptest",
|
|
551
|
+
"rand 0.8.5",
|
|
552
|
+
"rustc-hash",
|
|
553
|
+
"salsa",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "incr-concurrent-python"
|
|
558
|
+
version = "0.1.0"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"incr-concurrent",
|
|
561
|
+
"pyo3",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "incr-concurrent-server"
|
|
566
|
+
version = "0.1.0"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"axum",
|
|
569
|
+
"incr-concurrent",
|
|
570
|
+
"rand 0.8.5",
|
|
571
|
+
"serde",
|
|
572
|
+
"serde_json",
|
|
573
|
+
"tokio",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "incr-python"
|
|
578
|
+
version = "0.1.0"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"incr-compute",
|
|
581
|
+
"pyo3",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "indexmap"
|
|
586
|
+
version = "2.13.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"equivalent",
|
|
591
|
+
"hashbrown 0.16.1",
|
|
592
|
+
"serde",
|
|
593
|
+
"serde_core",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "indoc"
|
|
598
|
+
version = "2.0.7"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"rustversion",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "intrusive-collections"
|
|
607
|
+
version = "0.9.7"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"memoffset",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "inventory"
|
|
616
|
+
version = "0.3.24"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"rustversion",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "is-terminal"
|
|
625
|
+
version = "0.4.17"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"hermit-abi",
|
|
630
|
+
"libc",
|
|
631
|
+
"windows-sys",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "itertools"
|
|
636
|
+
version = "0.10.5"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"either",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "itoa"
|
|
645
|
+
version = "1.0.18"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "js-sys"
|
|
651
|
+
version = "0.3.94"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"once_cell",
|
|
656
|
+
"wasm-bindgen",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "leb128fmt"
|
|
661
|
+
version = "0.1.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "libc"
|
|
667
|
+
version = "0.2.184"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "linux-raw-sys"
|
|
673
|
+
version = "0.12.1"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "lock_api"
|
|
679
|
+
version = "0.4.14"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"scopeguard",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "log"
|
|
688
|
+
version = "0.4.29"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "matchit"
|
|
694
|
+
version = "0.8.4"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "memchr"
|
|
700
|
+
version = "2.8.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "memoffset"
|
|
706
|
+
version = "0.9.1"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"autocfg",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "mime"
|
|
715
|
+
version = "0.3.17"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "mio"
|
|
721
|
+
version = "1.2.0"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
724
|
+
dependencies = [
|
|
725
|
+
"libc",
|
|
726
|
+
"wasi",
|
|
727
|
+
"windows-sys",
|
|
728
|
+
]
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "num-traits"
|
|
732
|
+
version = "0.2.19"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"autocfg",
|
|
737
|
+
]
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "once_cell"
|
|
741
|
+
version = "1.21.4"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "oorandom"
|
|
747
|
+
version = "11.1.5"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "parking_lot"
|
|
753
|
+
version = "0.12.5"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"lock_api",
|
|
758
|
+
"parking_lot_core",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "parking_lot_core"
|
|
763
|
+
version = "0.9.12"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"cfg-if",
|
|
768
|
+
"libc",
|
|
769
|
+
"redox_syscall",
|
|
770
|
+
"smallvec",
|
|
771
|
+
"windows-link",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "percent-encoding"
|
|
776
|
+
version = "2.3.2"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "pin-project-lite"
|
|
782
|
+
version = "0.2.17"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "plotters"
|
|
788
|
+
version = "0.3.7"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"num-traits",
|
|
793
|
+
"plotters-backend",
|
|
794
|
+
"plotters-svg",
|
|
795
|
+
"wasm-bindgen",
|
|
796
|
+
"web-sys",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "plotters-backend"
|
|
801
|
+
version = "0.3.7"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "plotters-svg"
|
|
807
|
+
version = "0.3.7"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"plotters-backend",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "portable-atomic"
|
|
816
|
+
version = "1.13.1"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "ppv-lite86"
|
|
822
|
+
version = "0.2.21"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"zerocopy",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "prettyplease"
|
|
831
|
+
version = "0.2.37"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"proc-macro2",
|
|
836
|
+
"syn",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "proc-macro2"
|
|
841
|
+
version = "1.0.106"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"unicode-ident",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "proptest"
|
|
850
|
+
version = "1.11.0"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"bit-set",
|
|
855
|
+
"bit-vec",
|
|
856
|
+
"bitflags",
|
|
857
|
+
"num-traits",
|
|
858
|
+
"rand 0.9.2",
|
|
859
|
+
"rand_chacha 0.9.0",
|
|
860
|
+
"rand_xorshift",
|
|
861
|
+
"regex-syntax",
|
|
862
|
+
"rusty-fork",
|
|
863
|
+
"tempfile",
|
|
864
|
+
"unarray",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "pyo3"
|
|
869
|
+
version = "0.23.5"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"cfg-if",
|
|
874
|
+
"indoc",
|
|
875
|
+
"libc",
|
|
876
|
+
"memoffset",
|
|
877
|
+
"once_cell",
|
|
878
|
+
"portable-atomic",
|
|
879
|
+
"pyo3-build-config",
|
|
880
|
+
"pyo3-ffi",
|
|
881
|
+
"pyo3-macros",
|
|
882
|
+
"unindent",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "pyo3-build-config"
|
|
887
|
+
version = "0.23.5"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"once_cell",
|
|
892
|
+
"target-lexicon",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "pyo3-ffi"
|
|
897
|
+
version = "0.23.5"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"libc",
|
|
902
|
+
"pyo3-build-config",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "pyo3-macros"
|
|
907
|
+
version = "0.23.5"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"proc-macro2",
|
|
912
|
+
"pyo3-macros-backend",
|
|
913
|
+
"quote",
|
|
914
|
+
"syn",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "pyo3-macros-backend"
|
|
919
|
+
version = "0.23.5"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"heck",
|
|
924
|
+
"proc-macro2",
|
|
925
|
+
"pyo3-build-config",
|
|
926
|
+
"quote",
|
|
927
|
+
"syn",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "quick-error"
|
|
932
|
+
version = "1.2.3"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "quote"
|
|
938
|
+
version = "1.0.45"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"proc-macro2",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "r-efi"
|
|
947
|
+
version = "5.3.0"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "r-efi"
|
|
953
|
+
version = "6.0.0"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "rand"
|
|
959
|
+
version = "0.8.5"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"libc",
|
|
964
|
+
"rand_chacha 0.3.1",
|
|
965
|
+
"rand_core 0.6.4",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "rand"
|
|
970
|
+
version = "0.9.2"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"rand_chacha 0.9.0",
|
|
975
|
+
"rand_core 0.9.5",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "rand_chacha"
|
|
980
|
+
version = "0.3.1"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"ppv-lite86",
|
|
985
|
+
"rand_core 0.6.4",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "rand_chacha"
|
|
990
|
+
version = "0.9.0"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"ppv-lite86",
|
|
995
|
+
"rand_core 0.9.5",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "rand_core"
|
|
1000
|
+
version = "0.6.4"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"getrandom 0.2.17",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "rand_core"
|
|
1009
|
+
version = "0.9.5"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"getrandom 0.3.4",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "rand_xorshift"
|
|
1018
|
+
version = "0.4.0"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"rand_core 0.9.5",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "rayon"
|
|
1027
|
+
version = "1.11.0"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"either",
|
|
1032
|
+
"rayon-core",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "rayon-core"
|
|
1037
|
+
version = "1.13.0"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"crossbeam-deque",
|
|
1042
|
+
"crossbeam-utils",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "redox_syscall"
|
|
1047
|
+
version = "0.5.18"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"bitflags",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "regex"
|
|
1056
|
+
version = "1.12.3"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"aho-corasick",
|
|
1061
|
+
"memchr",
|
|
1062
|
+
"regex-automata",
|
|
1063
|
+
"regex-syntax",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "regex-automata"
|
|
1068
|
+
version = "0.4.14"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"aho-corasick",
|
|
1073
|
+
"memchr",
|
|
1074
|
+
"regex-syntax",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "regex-syntax"
|
|
1079
|
+
version = "0.8.10"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "rustc-hash"
|
|
1085
|
+
version = "2.1.2"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "rustix"
|
|
1091
|
+
version = "1.1.4"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"bitflags",
|
|
1096
|
+
"errno",
|
|
1097
|
+
"libc",
|
|
1098
|
+
"linux-raw-sys",
|
|
1099
|
+
"windows-sys",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "rustversion"
|
|
1104
|
+
version = "1.0.22"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "rusty-fork"
|
|
1110
|
+
version = "0.3.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"fnv",
|
|
1115
|
+
"quick-error",
|
|
1116
|
+
"tempfile",
|
|
1117
|
+
"wait-timeout",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "ryu"
|
|
1122
|
+
version = "1.0.23"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "salsa"
|
|
1128
|
+
version = "0.26.0"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "f77debccd43ba198e9cee23efd7f10330ff445e46a98a2b107fed9094a1ee676"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"boxcar",
|
|
1133
|
+
"crossbeam-queue",
|
|
1134
|
+
"crossbeam-utils",
|
|
1135
|
+
"hashbrown 0.15.5",
|
|
1136
|
+
"hashlink",
|
|
1137
|
+
"indexmap",
|
|
1138
|
+
"intrusive-collections",
|
|
1139
|
+
"inventory",
|
|
1140
|
+
"parking_lot",
|
|
1141
|
+
"portable-atomic",
|
|
1142
|
+
"rayon",
|
|
1143
|
+
"rustc-hash",
|
|
1144
|
+
"salsa-macro-rules",
|
|
1145
|
+
"salsa-macros",
|
|
1146
|
+
"smallvec",
|
|
1147
|
+
"thin-vec",
|
|
1148
|
+
"tracing",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "salsa-macro-rules"
|
|
1153
|
+
version = "0.26.0"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "ea07adbf42d91cc076b7daf3b38bc8168c19eb362c665964118a89bc55ef19a5"
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "salsa-macros"
|
|
1159
|
+
version = "0.26.0"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "d16d4d8b66451b9c75ddf740b7fc8399bc7b8ba33e854a5d7526d18708f67b05"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"proc-macro2",
|
|
1164
|
+
"quote",
|
|
1165
|
+
"syn",
|
|
1166
|
+
"synstructure",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "same-file"
|
|
1171
|
+
version = "1.0.6"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"winapi-util",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "scopeguard"
|
|
1180
|
+
version = "1.2.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "semver"
|
|
1186
|
+
version = "1.0.28"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "serde"
|
|
1192
|
+
version = "1.0.228"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"serde_core",
|
|
1197
|
+
"serde_derive",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "serde_core"
|
|
1202
|
+
version = "1.0.228"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"serde_derive",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "serde_derive"
|
|
1211
|
+
version = "1.0.228"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"proc-macro2",
|
|
1216
|
+
"quote",
|
|
1217
|
+
"syn",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "serde_json"
|
|
1222
|
+
version = "1.0.149"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"itoa",
|
|
1227
|
+
"memchr",
|
|
1228
|
+
"serde",
|
|
1229
|
+
"serde_core",
|
|
1230
|
+
"zmij",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "serde_path_to_error"
|
|
1235
|
+
version = "0.1.20"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"itoa",
|
|
1240
|
+
"serde",
|
|
1241
|
+
"serde_core",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "serde_urlencoded"
|
|
1246
|
+
version = "0.7.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"form_urlencoded",
|
|
1251
|
+
"itoa",
|
|
1252
|
+
"ryu",
|
|
1253
|
+
"serde",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "signal-hook-registry"
|
|
1258
|
+
version = "1.4.8"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"errno",
|
|
1263
|
+
"libc",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "slab"
|
|
1268
|
+
version = "0.4.12"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "smallvec"
|
|
1274
|
+
version = "1.15.1"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "socket2"
|
|
1280
|
+
version = "0.6.3"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"libc",
|
|
1285
|
+
"windows-sys",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "syn"
|
|
1290
|
+
version = "2.0.117"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"proc-macro2",
|
|
1295
|
+
"quote",
|
|
1296
|
+
"unicode-ident",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "sync_wrapper"
|
|
1301
|
+
version = "1.0.2"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "synstructure"
|
|
1307
|
+
version = "0.13.2"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"proc-macro2",
|
|
1312
|
+
"quote",
|
|
1313
|
+
"syn",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "target-lexicon"
|
|
1318
|
+
version = "0.12.16"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "tempfile"
|
|
1324
|
+
version = "3.27.0"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1327
|
+
dependencies = [
|
|
1328
|
+
"fastrand",
|
|
1329
|
+
"getrandom 0.4.2",
|
|
1330
|
+
"once_cell",
|
|
1331
|
+
"rustix",
|
|
1332
|
+
"windows-sys",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "thin-vec"
|
|
1337
|
+
version = "0.2.14"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "tinytemplate"
|
|
1343
|
+
version = "1.2.1"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"serde",
|
|
1348
|
+
"serde_json",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "tokio"
|
|
1353
|
+
version = "1.51.0"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"bytes",
|
|
1358
|
+
"libc",
|
|
1359
|
+
"mio",
|
|
1360
|
+
"parking_lot",
|
|
1361
|
+
"pin-project-lite",
|
|
1362
|
+
"signal-hook-registry",
|
|
1363
|
+
"socket2",
|
|
1364
|
+
"tokio-macros",
|
|
1365
|
+
"windows-sys",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "tokio-macros"
|
|
1370
|
+
version = "2.7.0"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"proc-macro2",
|
|
1375
|
+
"quote",
|
|
1376
|
+
"syn",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "tower"
|
|
1381
|
+
version = "0.5.3"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"futures-core",
|
|
1386
|
+
"futures-util",
|
|
1387
|
+
"pin-project-lite",
|
|
1388
|
+
"sync_wrapper",
|
|
1389
|
+
"tokio",
|
|
1390
|
+
"tower-layer",
|
|
1391
|
+
"tower-service",
|
|
1392
|
+
"tracing",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "tower-layer"
|
|
1397
|
+
version = "0.3.3"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "tower-service"
|
|
1403
|
+
version = "0.3.3"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "tracing"
|
|
1409
|
+
version = "0.1.44"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"log",
|
|
1414
|
+
"pin-project-lite",
|
|
1415
|
+
"tracing-core",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "tracing-core"
|
|
1420
|
+
version = "0.1.36"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"once_cell",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "unarray"
|
|
1429
|
+
version = "0.1.4"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "unicode-ident"
|
|
1435
|
+
version = "1.0.24"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1438
|
+
|
|
1439
|
+
[[package]]
|
|
1440
|
+
name = "unicode-xid"
|
|
1441
|
+
version = "0.2.6"
|
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "unindent"
|
|
1447
|
+
version = "0.2.4"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "wait-timeout"
|
|
1453
|
+
version = "0.2.1"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"libc",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "walkdir"
|
|
1462
|
+
version = "2.5.0"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"same-file",
|
|
1467
|
+
"winapi-util",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "wasi"
|
|
1472
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "wasip2"
|
|
1478
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"wit-bindgen",
|
|
1483
|
+
]
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "wasip3"
|
|
1487
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1490
|
+
dependencies = [
|
|
1491
|
+
"wit-bindgen",
|
|
1492
|
+
]
|
|
1493
|
+
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "wasm-bindgen"
|
|
1496
|
+
version = "0.2.117"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
1499
|
+
dependencies = [
|
|
1500
|
+
"cfg-if",
|
|
1501
|
+
"once_cell",
|
|
1502
|
+
"rustversion",
|
|
1503
|
+
"wasm-bindgen-macro",
|
|
1504
|
+
"wasm-bindgen-shared",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "wasm-bindgen-macro"
|
|
1509
|
+
version = "0.2.117"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"quote",
|
|
1514
|
+
"wasm-bindgen-macro-support",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "wasm-bindgen-macro-support"
|
|
1519
|
+
version = "0.2.117"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"bumpalo",
|
|
1524
|
+
"proc-macro2",
|
|
1525
|
+
"quote",
|
|
1526
|
+
"syn",
|
|
1527
|
+
"wasm-bindgen-shared",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "wasm-bindgen-shared"
|
|
1532
|
+
version = "0.2.117"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"unicode-ident",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "wasm-encoder"
|
|
1541
|
+
version = "0.244.0"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"leb128fmt",
|
|
1546
|
+
"wasmparser",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "wasm-metadata"
|
|
1551
|
+
version = "0.244.0"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"anyhow",
|
|
1556
|
+
"indexmap",
|
|
1557
|
+
"wasm-encoder",
|
|
1558
|
+
"wasmparser",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "wasmparser"
|
|
1563
|
+
version = "0.244.0"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"bitflags",
|
|
1568
|
+
"hashbrown 0.15.5",
|
|
1569
|
+
"indexmap",
|
|
1570
|
+
"semver",
|
|
1571
|
+
]
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "web-sys"
|
|
1575
|
+
version = "0.3.94"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"js-sys",
|
|
1580
|
+
"wasm-bindgen",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "winapi-util"
|
|
1585
|
+
version = "0.1.11"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"windows-sys",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "windows-link"
|
|
1594
|
+
version = "0.2.1"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "windows-sys"
|
|
1600
|
+
version = "0.61.2"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"windows-link",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "wit-bindgen"
|
|
1609
|
+
version = "0.51.0"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"wit-bindgen-rust-macro",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "wit-bindgen-core"
|
|
1618
|
+
version = "0.51.0"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"anyhow",
|
|
1623
|
+
"heck",
|
|
1624
|
+
"wit-parser",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "wit-bindgen-rust"
|
|
1629
|
+
version = "0.51.0"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"anyhow",
|
|
1634
|
+
"heck",
|
|
1635
|
+
"indexmap",
|
|
1636
|
+
"prettyplease",
|
|
1637
|
+
"syn",
|
|
1638
|
+
"wasm-metadata",
|
|
1639
|
+
"wit-bindgen-core",
|
|
1640
|
+
"wit-component",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "wit-bindgen-rust-macro"
|
|
1645
|
+
version = "0.51.0"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"anyhow",
|
|
1650
|
+
"prettyplease",
|
|
1651
|
+
"proc-macro2",
|
|
1652
|
+
"quote",
|
|
1653
|
+
"syn",
|
|
1654
|
+
"wit-bindgen-core",
|
|
1655
|
+
"wit-bindgen-rust",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "wit-component"
|
|
1660
|
+
version = "0.244.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"anyhow",
|
|
1665
|
+
"bitflags",
|
|
1666
|
+
"indexmap",
|
|
1667
|
+
"log",
|
|
1668
|
+
"serde",
|
|
1669
|
+
"serde_derive",
|
|
1670
|
+
"serde_json",
|
|
1671
|
+
"wasm-encoder",
|
|
1672
|
+
"wasm-metadata",
|
|
1673
|
+
"wasmparser",
|
|
1674
|
+
"wit-parser",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "wit-parser"
|
|
1679
|
+
version = "0.244.0"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"anyhow",
|
|
1684
|
+
"id-arena",
|
|
1685
|
+
"indexmap",
|
|
1686
|
+
"log",
|
|
1687
|
+
"semver",
|
|
1688
|
+
"serde",
|
|
1689
|
+
"serde_derive",
|
|
1690
|
+
"serde_json",
|
|
1691
|
+
"unicode-xid",
|
|
1692
|
+
"wasmparser",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "zerocopy"
|
|
1697
|
+
version = "0.8.48"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"zerocopy-derive",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "zerocopy-derive"
|
|
1706
|
+
version = "0.8.48"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"proc-macro2",
|
|
1711
|
+
"quote",
|
|
1712
|
+
"syn",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "zmij"
|
|
1717
|
+
version = "1.0.21"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|