bitgauss_pybindings 0.0.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.
- bitgauss_pybindings-0.0.0/Cargo.lock +834 -0
- bitgauss_pybindings-0.0.0/Cargo.toml +17 -0
- bitgauss_pybindings-0.0.0/PKG-INFO +11 -0
- bitgauss_pybindings-0.0.0/bitgauss/Cargo.toml +25 -0
- bitgauss_pybindings-0.0.0/bitgauss/README.md +149 -0
- bitgauss_pybindings-0.0.0/bitgauss/benches/matrix_ops.rs +154 -0
- bitgauss_pybindings-0.0.0/bitgauss/src/bitmatrix.rs +1585 -0
- bitgauss_pybindings-0.0.0/bitgauss/src/bitvector.rs +305 -0
- bitgauss_pybindings-0.0.0/bitgauss/src/data.rs +649 -0
- bitgauss_pybindings-0.0.0/bitgauss/src/graphic.rs +2516 -0
- bitgauss_pybindings-0.0.0/bitgauss/src/lib.rs +25 -0
- bitgauss_pybindings-0.0.0/pybindings/.python-version +1 -0
- bitgauss_pybindings-0.0.0/pybindings/Cargo.toml +23 -0
- bitgauss_pybindings-0.0.0/pybindings/README.md +1 -0
- bitgauss_pybindings-0.0.0/pybindings/bitgauss.pyi +425 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/Makefile +20 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/conf.py +38 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/graphic/GRP.java +1693 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/graphic/LICENSE +25 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/graphic/README.txt +141 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/index.rst +19 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/make.bat +35 -0
- bitgauss_pybindings-0.0.0/pybindings/docs/requirements.txt +7 -0
- bitgauss_pybindings-0.0.0/pybindings/src/bitmatrix.rs +462 -0
- bitgauss_pybindings-0.0.0/pybindings/src/bitvector.rs +256 -0
- bitgauss_pybindings-0.0.0/pybindings/src/lib.rs +17 -0
- bitgauss_pybindings-0.0.0/pybindings/tests/test_bindings.py +556 -0
- bitgauss_pybindings-0.0.0/pyproject.toml +21 -0
|
@@ -0,0 +1,834 @@
|
|
|
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.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.11"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "autocfg"
|
|
28
|
+
version = "1.4.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.9.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bitgauss"
|
|
40
|
+
version = "0.4.1"
|
|
41
|
+
dependencies = [
|
|
42
|
+
"criterion",
|
|
43
|
+
"rand",
|
|
44
|
+
"ref-cast",
|
|
45
|
+
"rustc-hash",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "bitgauss_pybindings"
|
|
50
|
+
version = "0.0.0"
|
|
51
|
+
dependencies = [
|
|
52
|
+
"bitgauss",
|
|
53
|
+
"pyo3",
|
|
54
|
+
"rand",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "bumpalo"
|
|
59
|
+
version = "3.18.1"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "cast"
|
|
65
|
+
version = "0.3.0"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "cfg-if"
|
|
71
|
+
version = "1.0.1"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "ciborium"
|
|
77
|
+
version = "0.2.2"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"ciborium-io",
|
|
82
|
+
"ciborium-ll",
|
|
83
|
+
"serde",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "ciborium-io"
|
|
88
|
+
version = "0.2.2"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "ciborium-ll"
|
|
94
|
+
version = "0.2.2"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"ciborium-io",
|
|
99
|
+
"half",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "clap"
|
|
104
|
+
version = "4.5.40"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"clap_builder",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "clap_builder"
|
|
113
|
+
version = "4.5.40"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"anstyle",
|
|
118
|
+
"clap_lex",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "clap_lex"
|
|
123
|
+
version = "0.7.5"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "criterion"
|
|
129
|
+
version = "0.6.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"anes",
|
|
134
|
+
"cast",
|
|
135
|
+
"ciborium",
|
|
136
|
+
"clap",
|
|
137
|
+
"criterion-plot",
|
|
138
|
+
"itertools 0.13.0",
|
|
139
|
+
"num-traits",
|
|
140
|
+
"oorandom",
|
|
141
|
+
"plotters",
|
|
142
|
+
"rayon",
|
|
143
|
+
"regex",
|
|
144
|
+
"serde",
|
|
145
|
+
"serde_json",
|
|
146
|
+
"tinytemplate",
|
|
147
|
+
"walkdir",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "criterion-plot"
|
|
152
|
+
version = "0.5.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"cast",
|
|
157
|
+
"itertools 0.10.5",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "crossbeam-deque"
|
|
162
|
+
version = "0.8.6"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"crossbeam-epoch",
|
|
167
|
+
"crossbeam-utils",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "crossbeam-epoch"
|
|
172
|
+
version = "0.9.18"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"crossbeam-utils",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "crossbeam-utils"
|
|
181
|
+
version = "0.8.21"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "crunchy"
|
|
187
|
+
version = "0.2.3"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "either"
|
|
193
|
+
version = "1.15.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "getrandom"
|
|
199
|
+
version = "0.3.3"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"cfg-if",
|
|
204
|
+
"libc",
|
|
205
|
+
"r-efi",
|
|
206
|
+
"wasi",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "half"
|
|
211
|
+
version = "2.6.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"cfg-if",
|
|
216
|
+
"crunchy",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "heck"
|
|
221
|
+
version = "0.5.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "indoc"
|
|
227
|
+
version = "2.0.6"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "itertools"
|
|
233
|
+
version = "0.10.5"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"either",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "itertools"
|
|
242
|
+
version = "0.13.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"either",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "itoa"
|
|
251
|
+
version = "1.0.15"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "js-sys"
|
|
257
|
+
version = "0.3.77"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"once_cell",
|
|
262
|
+
"wasm-bindgen",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "libc"
|
|
267
|
+
version = "0.2.173"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "d8cfeafaffdbc32176b64fb251369d52ea9f0a8fbc6f8759edffef7b525d64bb"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "log"
|
|
273
|
+
version = "0.4.27"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "memchr"
|
|
279
|
+
version = "2.7.5"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "memoffset"
|
|
285
|
+
version = "0.9.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"autocfg",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "num-traits"
|
|
294
|
+
version = "0.2.19"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"autocfg",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "once_cell"
|
|
303
|
+
version = "1.21.3"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "oorandom"
|
|
309
|
+
version = "11.1.5"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "plotters"
|
|
315
|
+
version = "0.3.7"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"num-traits",
|
|
320
|
+
"plotters-backend",
|
|
321
|
+
"plotters-svg",
|
|
322
|
+
"wasm-bindgen",
|
|
323
|
+
"web-sys",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "plotters-backend"
|
|
328
|
+
version = "0.3.7"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "plotters-svg"
|
|
334
|
+
version = "0.3.7"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"plotters-backend",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "portable-atomic"
|
|
343
|
+
version = "1.11.1"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "ppv-lite86"
|
|
349
|
+
version = "0.2.21"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"zerocopy",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "proc-macro2"
|
|
358
|
+
version = "1.0.95"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"unicode-ident",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "pyo3"
|
|
367
|
+
version = "0.25.1"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"indoc",
|
|
372
|
+
"libc",
|
|
373
|
+
"memoffset",
|
|
374
|
+
"once_cell",
|
|
375
|
+
"portable-atomic",
|
|
376
|
+
"pyo3-build-config",
|
|
377
|
+
"pyo3-ffi",
|
|
378
|
+
"pyo3-macros",
|
|
379
|
+
"unindent",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "pyo3-build-config"
|
|
384
|
+
version = "0.25.1"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"once_cell",
|
|
389
|
+
"target-lexicon",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "pyo3-ffi"
|
|
394
|
+
version = "0.25.1"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"libc",
|
|
399
|
+
"pyo3-build-config",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "pyo3-macros"
|
|
404
|
+
version = "0.25.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"proc-macro2",
|
|
409
|
+
"pyo3-macros-backend",
|
|
410
|
+
"quote",
|
|
411
|
+
"syn",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "pyo3-macros-backend"
|
|
416
|
+
version = "0.25.1"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"heck",
|
|
421
|
+
"proc-macro2",
|
|
422
|
+
"pyo3-build-config",
|
|
423
|
+
"quote",
|
|
424
|
+
"syn",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "quote"
|
|
429
|
+
version = "1.0.40"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"proc-macro2",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "r-efi"
|
|
438
|
+
version = "5.2.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "rand"
|
|
444
|
+
version = "0.9.1"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"rand_chacha",
|
|
449
|
+
"rand_core",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "rand_chacha"
|
|
454
|
+
version = "0.9.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"ppv-lite86",
|
|
459
|
+
"rand_core",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "rand_core"
|
|
464
|
+
version = "0.9.3"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"getrandom",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "rayon"
|
|
473
|
+
version = "1.10.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"either",
|
|
478
|
+
"rayon-core",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "rayon-core"
|
|
483
|
+
version = "1.12.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"crossbeam-deque",
|
|
488
|
+
"crossbeam-utils",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "ref-cast"
|
|
493
|
+
version = "1.0.24"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"ref-cast-impl",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "ref-cast-impl"
|
|
502
|
+
version = "1.0.24"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"proc-macro2",
|
|
507
|
+
"quote",
|
|
508
|
+
"syn",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "regex"
|
|
513
|
+
version = "1.11.1"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"aho-corasick",
|
|
518
|
+
"memchr",
|
|
519
|
+
"regex-automata",
|
|
520
|
+
"regex-syntax",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "regex-automata"
|
|
525
|
+
version = "0.4.9"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"aho-corasick",
|
|
530
|
+
"memchr",
|
|
531
|
+
"regex-syntax",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "regex-syntax"
|
|
536
|
+
version = "0.8.5"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "rustc-hash"
|
|
542
|
+
version = "2.1.1"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "rustversion"
|
|
548
|
+
version = "1.0.21"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "ryu"
|
|
554
|
+
version = "1.0.20"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "same-file"
|
|
560
|
+
version = "1.0.6"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"winapi-util",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "serde"
|
|
569
|
+
version = "1.0.219"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"serde_derive",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "serde_derive"
|
|
578
|
+
version = "1.0.219"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"proc-macro2",
|
|
583
|
+
"quote",
|
|
584
|
+
"syn",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "serde_json"
|
|
589
|
+
version = "1.0.140"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"itoa",
|
|
594
|
+
"memchr",
|
|
595
|
+
"ryu",
|
|
596
|
+
"serde",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "syn"
|
|
601
|
+
version = "2.0.103"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"proc-macro2",
|
|
606
|
+
"quote",
|
|
607
|
+
"unicode-ident",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "target-lexicon"
|
|
612
|
+
version = "0.13.2"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "tinytemplate"
|
|
618
|
+
version = "1.2.1"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"serde",
|
|
623
|
+
"serde_json",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "unicode-ident"
|
|
628
|
+
version = "1.0.18"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "unindent"
|
|
634
|
+
version = "0.2.4"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "walkdir"
|
|
640
|
+
version = "2.5.0"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"same-file",
|
|
645
|
+
"winapi-util",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "wasi"
|
|
650
|
+
version = "0.14.2+wasi-0.2.4"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"wit-bindgen-rt",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "wasm-bindgen"
|
|
659
|
+
version = "0.2.100"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"cfg-if",
|
|
664
|
+
"once_cell",
|
|
665
|
+
"rustversion",
|
|
666
|
+
"wasm-bindgen-macro",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "wasm-bindgen-backend"
|
|
671
|
+
version = "0.2.100"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"bumpalo",
|
|
676
|
+
"log",
|
|
677
|
+
"proc-macro2",
|
|
678
|
+
"quote",
|
|
679
|
+
"syn",
|
|
680
|
+
"wasm-bindgen-shared",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "wasm-bindgen-macro"
|
|
685
|
+
version = "0.2.100"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"quote",
|
|
690
|
+
"wasm-bindgen-macro-support",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "wasm-bindgen-macro-support"
|
|
695
|
+
version = "0.2.100"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"proc-macro2",
|
|
700
|
+
"quote",
|
|
701
|
+
"syn",
|
|
702
|
+
"wasm-bindgen-backend",
|
|
703
|
+
"wasm-bindgen-shared",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "wasm-bindgen-shared"
|
|
708
|
+
version = "0.2.100"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"unicode-ident",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "web-sys"
|
|
717
|
+
version = "0.3.77"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"js-sys",
|
|
722
|
+
"wasm-bindgen",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "winapi-util"
|
|
727
|
+
version = "0.1.9"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"windows-sys",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "windows-sys"
|
|
736
|
+
version = "0.59.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"windows-targets",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "windows-targets"
|
|
745
|
+
version = "0.52.6"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"windows_aarch64_gnullvm",
|
|
750
|
+
"windows_aarch64_msvc",
|
|
751
|
+
"windows_i686_gnu",
|
|
752
|
+
"windows_i686_gnullvm",
|
|
753
|
+
"windows_i686_msvc",
|
|
754
|
+
"windows_x86_64_gnu",
|
|
755
|
+
"windows_x86_64_gnullvm",
|
|
756
|
+
"windows_x86_64_msvc",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "windows_aarch64_gnullvm"
|
|
761
|
+
version = "0.52.6"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "windows_aarch64_msvc"
|
|
767
|
+
version = "0.52.6"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "windows_i686_gnu"
|
|
773
|
+
version = "0.52.6"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "windows_i686_gnullvm"
|
|
779
|
+
version = "0.52.6"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "windows_i686_msvc"
|
|
785
|
+
version = "0.52.6"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "windows_x86_64_gnu"
|
|
791
|
+
version = "0.52.6"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "windows_x86_64_gnullvm"
|
|
797
|
+
version = "0.52.6"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "windows_x86_64_msvc"
|
|
803
|
+
version = "0.52.6"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "wit-bindgen-rt"
|
|
809
|
+
version = "0.39.0"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
812
|
+
dependencies = [
|
|
813
|
+
"bitflags",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "zerocopy"
|
|
818
|
+
version = "0.8.25"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"zerocopy-derive",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "zerocopy-derive"
|
|
827
|
+
version = "0.8.25"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"proc-macro2",
|
|
832
|
+
"quote",
|
|
833
|
+
"syn",
|
|
834
|
+
]
|