rustypca 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.
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ groups:
8
+ actions:
9
+ patterns: ["*"]
10
+
11
+ - package-ecosystem: "uv"
12
+ directory: "/"
13
+ schedule:
14
+ interval: "weekly"
15
+ groups:
16
+ python-packages:
17
+ patterns: ["*"]
@@ -0,0 +1,69 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ lint:
15
+ runs-on: ubuntu-latest
16
+
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+
20
+ - name: Set up Rust
21
+ uses: dtolnay/rust-toolchain@1.85.0
22
+ with:
23
+ components: rustfmt
24
+
25
+ - name: Set up uv
26
+ uses: astral-sh/setup-uv@v5
27
+ with:
28
+ python-version: "3.11"
29
+
30
+ - name: Install dependencies
31
+ run: uv sync --only-dev
32
+
33
+ - name: Check formatting
34
+ run: make check
35
+
36
+ test:
37
+ needs: lint
38
+ runs-on: ${{ matrix.os }}
39
+ strategy:
40
+ matrix:
41
+ os: [ubuntu-latest, macos-latest, windows-latest]
42
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
43
+
44
+ steps:
45
+ - uses: actions/checkout@v4
46
+
47
+ - name: Set up Rust
48
+ uses: dtolnay/rust-toolchain@1.85.0
49
+
50
+ - name: Set up uv
51
+ uses: astral-sh/setup-uv@v5
52
+ with:
53
+ python-version: ${{ matrix.python-version }}
54
+
55
+ - name: Install dependencies
56
+ run: uv sync --all-extras
57
+
58
+ - name: Run Rust tests
59
+ run: cargo test
60
+ shell: bash
61
+
62
+ - name: Build extension
63
+ run: make develop
64
+ shell: bash
65
+
66
+ - name: Run tests
67
+ run: make test
68
+ shell: bash
69
+
@@ -0,0 +1,57 @@
1
+ name: Wheels
2
+
3
+ on:
4
+ push:
5
+ tags: ["v*"]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest, macos-latest, windows-latest]
14
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: dtolnay/rust-toolchain@1.85.0
18
+ - uses: PyO3/maturin-action@v1
19
+ with:
20
+ command: build
21
+ args: --release --interpreter python${{ matrix.python-version }} --out dist
22
+ - uses: actions/upload-artifact@v4
23
+ with:
24
+ name: wheels-${{ matrix.os }}-py${{ matrix.python-version }}
25
+ path: dist
26
+
27
+ sdist:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ - uses: PyO3/maturin-action@v1
32
+ with:
33
+ command: sdist
34
+ args: --out dist
35
+ - uses: actions/upload-artifact@v4
36
+ with:
37
+ name: sdist
38
+ path: dist
39
+
40
+ publish:
41
+ name: Publish to PyPI
42
+ runs-on: ubuntu-latest
43
+ needs: [build, sdist]
44
+ environment: pypi
45
+ permissions:
46
+ id-token: write
47
+ steps:
48
+ - uses: actions/download-artifact@v4
49
+ with:
50
+ pattern: wheels-*
51
+ merge-multiple: true
52
+ path: dist
53
+ - uses: actions/download-artifact@v4
54
+ with:
55
+ name: sdist
56
+ path: dist
57
+ - uses: pypa/gh-action-pypi-publish@v1.12.3
@@ -0,0 +1,66 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ # UV
13
+ uv.lock
14
+
15
+ # Python build artifacts
16
+ *.so
17
+ .Python
18
+ develop-eggs/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ .installed.cfg
29
+ *.egg
30
+ .pytest_cache/
31
+ .tox/
32
+ .coverage
33
+ .coverage.*
34
+ .cache
35
+ nosetests.xml
36
+ coverage.xml
37
+ *.cover
38
+ .hypothesis/
39
+ .env
40
+ venv/
41
+ ENV/
42
+ env.bak/
43
+ venv.bak/
44
+
45
+ # IDE
46
+ .idea/
47
+ .vscode/
48
+ *.swp
49
+ *.swo
50
+ *~
51
+ .DS_Store
52
+
53
+ # Rust build artifacts
54
+ target/
55
+ Cargo.lock
56
+ *.rlib
57
+ *.rmeta
58
+
59
+ # Maturin/PyO3
60
+ *.o
61
+ *.pyd
62
+ *.dll
63
+ ppca_rs.cp*.so
64
+
65
+ # Jupyter Notebook checkpoints
66
+ .ipynb_checkpoints/
@@ -0,0 +1,485 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "approx"
7
+ version = "0.5.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
10
+ dependencies = [
11
+ "num-traits",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
19
+
20
+ [[package]]
21
+ name = "bytemuck"
22
+ version = "1.25.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
25
+
26
+ [[package]]
27
+ name = "cfg-if"
28
+ version = "1.0.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
31
+
32
+ [[package]]
33
+ name = "getrandom"
34
+ version = "0.2.17"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
37
+ dependencies = [
38
+ "cfg-if",
39
+ "libc",
40
+ "wasi",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "heck"
45
+ version = "0.5.0"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
48
+
49
+ [[package]]
50
+ name = "indoc"
51
+ version = "2.0.7"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
54
+ dependencies = [
55
+ "rustversion",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "libc"
60
+ version = "0.2.182"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
63
+
64
+ [[package]]
65
+ name = "matrixmultiply"
66
+ version = "0.3.10"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
69
+ dependencies = [
70
+ "autocfg",
71
+ "rawpointer",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "memoffset"
76
+ version = "0.9.1"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
79
+ dependencies = [
80
+ "autocfg",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "nalgebra"
85
+ version = "0.33.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b"
88
+ dependencies = [
89
+ "approx",
90
+ "matrixmultiply",
91
+ "nalgebra-macros",
92
+ "num-complex",
93
+ "num-rational",
94
+ "num-traits",
95
+ "simba",
96
+ "typenum",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "nalgebra-macros"
101
+ version = "0.2.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
104
+ dependencies = [
105
+ "proc-macro2",
106
+ "quote",
107
+ "syn",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "ndarray"
112
+ version = "0.16.1"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
115
+ dependencies = [
116
+ "matrixmultiply",
117
+ "num-complex",
118
+ "num-integer",
119
+ "num-traits",
120
+ "portable-atomic",
121
+ "portable-atomic-util",
122
+ "rawpointer",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "num-bigint"
127
+ version = "0.4.6"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
130
+ dependencies = [
131
+ "num-integer",
132
+ "num-traits",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "num-complex"
137
+ version = "0.4.6"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
140
+ dependencies = [
141
+ "num-traits",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "num-integer"
146
+ version = "0.1.46"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
149
+ dependencies = [
150
+ "num-traits",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "num-rational"
155
+ version = "0.4.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
158
+ dependencies = [
159
+ "num-bigint",
160
+ "num-integer",
161
+ "num-traits",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "num-traits"
166
+ version = "0.2.19"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
169
+ dependencies = [
170
+ "autocfg",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "numpy"
175
+ version = "0.23.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
178
+ dependencies = [
179
+ "libc",
180
+ "ndarray",
181
+ "num-complex",
182
+ "num-integer",
183
+ "num-traits",
184
+ "pyo3",
185
+ "rustc-hash",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "once_cell"
190
+ version = "1.21.3"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
193
+
194
+ [[package]]
195
+ name = "paste"
196
+ version = "1.0.15"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
199
+
200
+ [[package]]
201
+ name = "portable-atomic"
202
+ version = "1.13.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
205
+
206
+ [[package]]
207
+ name = "portable-atomic-util"
208
+ version = "0.2.5"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
211
+ dependencies = [
212
+ "portable-atomic",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "ppv-lite86"
217
+ version = "0.2.21"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
220
+ dependencies = [
221
+ "zerocopy",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "proc-macro2"
226
+ version = "1.0.106"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
229
+ dependencies = [
230
+ "unicode-ident",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "pyo3"
235
+ version = "0.23.5"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
238
+ dependencies = [
239
+ "cfg-if",
240
+ "indoc",
241
+ "libc",
242
+ "memoffset",
243
+ "once_cell",
244
+ "portable-atomic",
245
+ "pyo3-build-config",
246
+ "pyo3-ffi",
247
+ "pyo3-macros",
248
+ "unindent",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "pyo3-build-config"
253
+ version = "0.23.5"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
256
+ dependencies = [
257
+ "once_cell",
258
+ "target-lexicon",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "pyo3-ffi"
263
+ version = "0.23.5"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
266
+ dependencies = [
267
+ "libc",
268
+ "pyo3-build-config",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "pyo3-macros"
273
+ version = "0.23.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
276
+ dependencies = [
277
+ "proc-macro2",
278
+ "pyo3-macros-backend",
279
+ "quote",
280
+ "syn",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "pyo3-macros-backend"
285
+ version = "0.23.5"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
288
+ dependencies = [
289
+ "heck",
290
+ "proc-macro2",
291
+ "pyo3-build-config",
292
+ "quote",
293
+ "syn",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "quote"
298
+ version = "1.0.44"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
301
+ dependencies = [
302
+ "proc-macro2",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "rand"
307
+ version = "0.8.5"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
310
+ dependencies = [
311
+ "libc",
312
+ "rand_chacha",
313
+ "rand_core",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "rand_chacha"
318
+ version = "0.3.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
321
+ dependencies = [
322
+ "ppv-lite86",
323
+ "rand_core",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "rand_core"
328
+ version = "0.6.4"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
331
+ dependencies = [
332
+ "getrandom",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "rawpointer"
337
+ version = "0.2.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
340
+
341
+ [[package]]
342
+ name = "rustc-hash"
343
+ version = "2.1.1"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
346
+
347
+ [[package]]
348
+ name = "rustversion"
349
+ version = "1.0.22"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
352
+
353
+ [[package]]
354
+ name = "rustypca"
355
+ version = "0.1.0"
356
+ dependencies = [
357
+ "nalgebra",
358
+ "numpy",
359
+ "pyo3",
360
+ "rand",
361
+ "serde",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "safe_arch"
366
+ version = "0.7.4"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
369
+ dependencies = [
370
+ "bytemuck",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "serde"
375
+ version = "1.0.228"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
378
+ dependencies = [
379
+ "serde_core",
380
+ "serde_derive",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "serde_core"
385
+ version = "1.0.228"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
388
+ dependencies = [
389
+ "serde_derive",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "serde_derive"
394
+ version = "1.0.228"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
397
+ dependencies = [
398
+ "proc-macro2",
399
+ "quote",
400
+ "syn",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "simba"
405
+ version = "0.9.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
408
+ dependencies = [
409
+ "approx",
410
+ "num-complex",
411
+ "num-traits",
412
+ "paste",
413
+ "wide",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "syn"
418
+ version = "2.0.117"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
421
+ dependencies = [
422
+ "proc-macro2",
423
+ "quote",
424
+ "unicode-ident",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "target-lexicon"
429
+ version = "0.12.16"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
432
+
433
+ [[package]]
434
+ name = "typenum"
435
+ version = "1.19.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
438
+
439
+ [[package]]
440
+ name = "unicode-ident"
441
+ version = "1.0.24"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
444
+
445
+ [[package]]
446
+ name = "unindent"
447
+ version = "0.2.4"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
450
+
451
+ [[package]]
452
+ name = "wasi"
453
+ version = "0.11.1+wasi-snapshot-preview1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
456
+
457
+ [[package]]
458
+ name = "wide"
459
+ version = "0.7.33"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
462
+ dependencies = [
463
+ "bytemuck",
464
+ "safe_arch",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "zerocopy"
469
+ version = "0.8.40"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
472
+ dependencies = [
473
+ "zerocopy-derive",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "zerocopy-derive"
478
+ version = "0.8.40"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
481
+ dependencies = [
482
+ "proc-macro2",
483
+ "quote",
484
+ "syn",
485
+ ]