grid-simulate 0.2.2__cp313-cp313-win_amd64.whl

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.
grid/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from .grid import *
2
+
3
+ __doc__ = grid.__doc__
4
+ if hasattr(grid, "__all__"):
5
+ __all__ = grid.__all__
Binary file
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: grid-simulate
3
+ Version: 0.2.2
4
+ Summary: Rust + PyO3 simulation library
5
+ Requires-Python: >=3.8
@@ -0,0 +1,6 @@
1
+ grid/__init__.py,sha256=eeIFI5WvU7kM5-lMg-i-uXoFzaRZZzUj0UumJw-ur1E,99
2
+ grid/grid.cp313-win_amd64.pyd,sha256=mnqN8zpV6PNFBh3psXqST6bFJcR4D3Aoc6xdVE0OzuI,321024
3
+ grid_simulate-0.2.2.dist-info/METADATA,sha256=C7aVEOoVVxkOPBdCzxEbKk5oKM3P73mNTRs84m5RETw,120
4
+ grid_simulate-0.2.2.dist-info/WHEEL,sha256=z3sDn4xNPtieBDo9mUKkT1e80gbhCuRsQQi1_g6mdQM,97
5
+ grid_simulate-0.2.2.dist-info/sboms/grid.cyclonedx.json,sha256=-ScQ_DNp45GVUqCbi8sP_TGkeDYReYMNDmJsDsFnFhQ,35272
6
+ grid_simulate-0.2.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.14.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
@@ -0,0 +1,1117 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "version": 1,
5
+ "serialNumber": "urn:uuid:ebabfd39-24b3-49a3-bece-9c6fa92375f4",
6
+ "metadata": {
7
+ "timestamp": "2026-07-14T11:33:07.553005600Z",
8
+ "tools": [
9
+ {
10
+ "vendor": "CycloneDX",
11
+ "name": "cargo-cyclonedx",
12
+ "version": "0.5.9"
13
+ }
14
+ ],
15
+ "component": {
16
+ "type": "application",
17
+ "bom-ref": "path+file:///C:/Users/runneradmin/AppData/Local/Temp/.tmpAvGxJF/grid_simulate-0.2.2#grid@0.2.2",
18
+ "name": "grid",
19
+ "version": "0.2.2",
20
+ "scope": "required",
21
+ "purl": "pkg:cargo/grid@0.2.2?download_url=file://.",
22
+ "components": [
23
+ {
24
+ "type": "library",
25
+ "bom-ref": "path+file:///C:/Users/runneradmin/AppData/Local/Temp/.tmpAvGxJF/grid_simulate-0.2.2#grid@0.2.2 bin-target-0",
26
+ "name": "grid",
27
+ "version": "0.2.2",
28
+ "purl": "pkg:cargo/grid@0.2.2?download_url=file://.#src/lib.rs"
29
+ },
30
+ {
31
+ "type": "application",
32
+ "bom-ref": "path+file:///C:/Users/runneradmin/AppData/Local/Temp/.tmpAvGxJF/grid_simulate-0.2.2#grid@0.2.2 bin-target-1",
33
+ "name": "grid_sim_demo",
34
+ "version": "0.2.2",
35
+ "purl": "pkg:cargo/grid@0.2.2?download_url=file://.#src/main.rs"
36
+ }
37
+ ]
38
+ },
39
+ "properties": [
40
+ {
41
+ "name": "cdx:rustc:sbom:target:all_targets",
42
+ "value": "true"
43
+ }
44
+ ]
45
+ },
46
+ "components": [
47
+ {
48
+ "type": "library",
49
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1",
50
+ "author": "Josh Stone <cuviper@gmail.com>",
51
+ "name": "autocfg",
52
+ "version": "1.5.1",
53
+ "description": "Automatic cfg for Rust compiler features",
54
+ "scope": "excluded",
55
+ "hashes": [
56
+ {
57
+ "alg": "SHA-256",
58
+ "content": "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
59
+ }
60
+ ],
61
+ "licenses": [
62
+ {
63
+ "expression": "Apache-2.0 OR MIT"
64
+ }
65
+ ],
66
+ "purl": "pkg:cargo/autocfg@1.5.1",
67
+ "externalReferences": [
68
+ {
69
+ "type": "documentation",
70
+ "url": "https://docs.rs/autocfg/"
71
+ },
72
+ {
73
+ "type": "vcs",
74
+ "url": "https://github.com/cuviper/autocfg"
75
+ }
76
+ ]
77
+ },
78
+ {
79
+ "type": "library",
80
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
81
+ "author": "Alex Crichton <alex@alexcrichton.com>",
82
+ "name": "cfg-if",
83
+ "version": "1.0.4",
84
+ "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
85
+ "scope": "required",
86
+ "hashes": [
87
+ {
88
+ "alg": "SHA-256",
89
+ "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
90
+ }
91
+ ],
92
+ "licenses": [
93
+ {
94
+ "expression": "MIT OR Apache-2.0"
95
+ }
96
+ ],
97
+ "purl": "pkg:cargo/cfg-if@1.0.4",
98
+ "externalReferences": [
99
+ {
100
+ "type": "vcs",
101
+ "url": "https://github.com/rust-lang/cfg-if"
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "type": "library",
107
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
108
+ "name": "heck",
109
+ "version": "0.5.0",
110
+ "description": "heck is a case conversion library.",
111
+ "scope": "required",
112
+ "hashes": [
113
+ {
114
+ "alg": "SHA-256",
115
+ "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
116
+ }
117
+ ],
118
+ "licenses": [
119
+ {
120
+ "expression": "MIT OR Apache-2.0"
121
+ }
122
+ ],
123
+ "purl": "pkg:cargo/heck@0.5.0",
124
+ "externalReferences": [
125
+ {
126
+ "type": "vcs",
127
+ "url": "https://github.com/withoutboats/heck"
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "type": "library",
133
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
134
+ "author": "David Tolnay <dtolnay@gmail.com>",
135
+ "name": "indoc",
136
+ "version": "2.0.7",
137
+ "description": "Indented document literals",
138
+ "scope": "required",
139
+ "hashes": [
140
+ {
141
+ "alg": "SHA-256",
142
+ "content": "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
143
+ }
144
+ ],
145
+ "licenses": [
146
+ {
147
+ "expression": "MIT OR Apache-2.0"
148
+ }
149
+ ],
150
+ "purl": "pkg:cargo/indoc@2.0.7",
151
+ "externalReferences": [
152
+ {
153
+ "type": "documentation",
154
+ "url": "https://docs.rs/indoc"
155
+ },
156
+ {
157
+ "type": "vcs",
158
+ "url": "https://github.com/dtolnay/indoc"
159
+ }
160
+ ]
161
+ },
162
+ {
163
+ "type": "library",
164
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
165
+ "author": "The Rust Project Developers",
166
+ "name": "libc",
167
+ "version": "0.2.186",
168
+ "description": "Raw FFI bindings to platform libraries like libc.",
169
+ "scope": "required",
170
+ "hashes": [
171
+ {
172
+ "alg": "SHA-256",
173
+ "content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
174
+ }
175
+ ],
176
+ "licenses": [
177
+ {
178
+ "expression": "MIT OR Apache-2.0"
179
+ }
180
+ ],
181
+ "purl": "pkg:cargo/libc@0.2.186",
182
+ "externalReferences": [
183
+ {
184
+ "type": "vcs",
185
+ "url": "https://github.com/rust-lang/libc"
186
+ }
187
+ ]
188
+ },
189
+ {
190
+ "type": "library",
191
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matrixmultiply@0.3.10",
192
+ "author": "bluss, R. Janis Goldschmidt",
193
+ "name": "matrixmultiply",
194
+ "version": "0.3.10",
195
+ "description": "General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize. Supports multithreading.",
196
+ "scope": "required",
197
+ "hashes": [
198
+ {
199
+ "alg": "SHA-256",
200
+ "content": "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
201
+ }
202
+ ],
203
+ "licenses": [
204
+ {
205
+ "expression": "MIT OR Apache-2.0"
206
+ }
207
+ ],
208
+ "purl": "pkg:cargo/matrixmultiply@0.3.10",
209
+ "externalReferences": [
210
+ {
211
+ "type": "documentation",
212
+ "url": "https://docs.rs/matrixmultiply/"
213
+ },
214
+ {
215
+ "type": "vcs",
216
+ "url": "https://github.com/bluss/matrixmultiply/"
217
+ }
218
+ ]
219
+ },
220
+ {
221
+ "type": "library",
222
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
223
+ "author": "Gilad Naaman <gilad.naaman@gmail.com>",
224
+ "name": "memoffset",
225
+ "version": "0.9.1",
226
+ "description": "offset_of functionality for Rust structs.",
227
+ "scope": "required",
228
+ "hashes": [
229
+ {
230
+ "alg": "SHA-256",
231
+ "content": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
232
+ }
233
+ ],
234
+ "licenses": [
235
+ {
236
+ "expression": "MIT"
237
+ }
238
+ ],
239
+ "purl": "pkg:cargo/memoffset@0.9.1",
240
+ "externalReferences": [
241
+ {
242
+ "type": "vcs",
243
+ "url": "https://github.com/Gilnaa/memoffset"
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "type": "library",
249
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ndarray@0.16.1",
250
+ "author": "Ulrik Sverdrup \"bluss\", Jim Turner",
251
+ "name": "ndarray",
252
+ "version": "0.16.1",
253
+ "description": "An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.",
254
+ "scope": "required",
255
+ "hashes": [
256
+ {
257
+ "alg": "SHA-256",
258
+ "content": "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
259
+ }
260
+ ],
261
+ "licenses": [
262
+ {
263
+ "expression": "MIT OR Apache-2.0"
264
+ }
265
+ ],
266
+ "purl": "pkg:cargo/ndarray@0.16.1",
267
+ "externalReferences": [
268
+ {
269
+ "type": "documentation",
270
+ "url": "https://docs.rs/ndarray/"
271
+ },
272
+ {
273
+ "type": "vcs",
274
+ "url": "https://github.com/rust-ndarray/ndarray"
275
+ }
276
+ ]
277
+ },
278
+ {
279
+ "type": "library",
280
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-complex@0.4.6",
281
+ "author": "The Rust Project Developers",
282
+ "name": "num-complex",
283
+ "version": "0.4.6",
284
+ "description": "Complex numbers implementation for Rust",
285
+ "scope": "required",
286
+ "hashes": [
287
+ {
288
+ "alg": "SHA-256",
289
+ "content": "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
290
+ }
291
+ ],
292
+ "licenses": [
293
+ {
294
+ "expression": "MIT OR Apache-2.0"
295
+ }
296
+ ],
297
+ "purl": "pkg:cargo/num-complex@0.4.6",
298
+ "externalReferences": [
299
+ {
300
+ "type": "documentation",
301
+ "url": "https://docs.rs/num-complex"
302
+ },
303
+ {
304
+ "type": "website",
305
+ "url": "https://github.com/rust-num/num-complex"
306
+ },
307
+ {
308
+ "type": "vcs",
309
+ "url": "https://github.com/rust-num/num-complex"
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ "type": "library",
315
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46",
316
+ "author": "The Rust Project Developers",
317
+ "name": "num-integer",
318
+ "version": "0.1.46",
319
+ "description": "Integer traits and functions",
320
+ "scope": "required",
321
+ "hashes": [
322
+ {
323
+ "alg": "SHA-256",
324
+ "content": "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
325
+ }
326
+ ],
327
+ "licenses": [
328
+ {
329
+ "expression": "MIT OR Apache-2.0"
330
+ }
331
+ ],
332
+ "purl": "pkg:cargo/num-integer@0.1.46",
333
+ "externalReferences": [
334
+ {
335
+ "type": "documentation",
336
+ "url": "https://docs.rs/num-integer"
337
+ },
338
+ {
339
+ "type": "website",
340
+ "url": "https://github.com/rust-num/num-integer"
341
+ },
342
+ {
343
+ "type": "vcs",
344
+ "url": "https://github.com/rust-num/num-integer"
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "type": "library",
350
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
351
+ "author": "The Rust Project Developers",
352
+ "name": "num-traits",
353
+ "version": "0.2.19",
354
+ "description": "Numeric traits for generic mathematics",
355
+ "scope": "required",
356
+ "hashes": [
357
+ {
358
+ "alg": "SHA-256",
359
+ "content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
360
+ }
361
+ ],
362
+ "licenses": [
363
+ {
364
+ "expression": "MIT OR Apache-2.0"
365
+ }
366
+ ],
367
+ "purl": "pkg:cargo/num-traits@0.2.19",
368
+ "externalReferences": [
369
+ {
370
+ "type": "documentation",
371
+ "url": "https://docs.rs/num-traits"
372
+ },
373
+ {
374
+ "type": "website",
375
+ "url": "https://github.com/rust-num/num-traits"
376
+ },
377
+ {
378
+ "type": "vcs",
379
+ "url": "https://github.com/rust-num/num-traits"
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "type": "library",
385
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#numpy@0.22.1",
386
+ "author": "The rust-numpy Project Developers, PyO3 Project and Contributors <https://github.com/PyO3>",
387
+ "name": "numpy",
388
+ "version": "0.22.1",
389
+ "description": "PyO3-based Rust bindings of the NumPy C-API",
390
+ "scope": "required",
391
+ "hashes": [
392
+ {
393
+ "alg": "SHA-256",
394
+ "content": "edb929bc0da91a4d85ed6c0a84deaa53d411abfb387fc271124f91bf6b89f14e"
395
+ }
396
+ ],
397
+ "licenses": [
398
+ {
399
+ "expression": "BSD-2-Clause"
400
+ }
401
+ ],
402
+ "purl": "pkg:cargo/numpy@0.22.1",
403
+ "externalReferences": [
404
+ {
405
+ "type": "documentation",
406
+ "url": "https://docs.rs/numpy"
407
+ },
408
+ {
409
+ "type": "vcs",
410
+ "url": "https://github.com/PyO3/rust-numpy"
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "type": "library",
416
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
417
+ "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
418
+ "name": "once_cell",
419
+ "version": "1.21.4",
420
+ "description": "Single assignment cells and lazy values.",
421
+ "scope": "required",
422
+ "hashes": [
423
+ {
424
+ "alg": "SHA-256",
425
+ "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
426
+ }
427
+ ],
428
+ "licenses": [
429
+ {
430
+ "expression": "MIT OR Apache-2.0"
431
+ }
432
+ ],
433
+ "purl": "pkg:cargo/once_cell@1.21.4",
434
+ "externalReferences": [
435
+ {
436
+ "type": "documentation",
437
+ "url": "https://docs.rs/once_cell"
438
+ },
439
+ {
440
+ "type": "vcs",
441
+ "url": "https://github.com/matklad/once_cell"
442
+ }
443
+ ]
444
+ },
445
+ {
446
+ "type": "library",
447
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.7",
448
+ "name": "portable-atomic-util",
449
+ "version": "0.2.7",
450
+ "description": "Synchronization primitives built with portable-atomic. ",
451
+ "scope": "required",
452
+ "hashes": [
453
+ {
454
+ "alg": "SHA-256",
455
+ "content": "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
456
+ }
457
+ ],
458
+ "licenses": [
459
+ {
460
+ "expression": "Apache-2.0 OR MIT"
461
+ }
462
+ ],
463
+ "purl": "pkg:cargo/portable-atomic-util@0.2.7",
464
+ "externalReferences": [
465
+ {
466
+ "type": "vcs",
467
+ "url": "https://github.com/taiki-e/portable-atomic-util"
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "type": "library",
473
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
474
+ "name": "portable-atomic",
475
+ "version": "1.13.1",
476
+ "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ",
477
+ "scope": "required",
478
+ "hashes": [
479
+ {
480
+ "alg": "SHA-256",
481
+ "content": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
482
+ }
483
+ ],
484
+ "licenses": [
485
+ {
486
+ "expression": "Apache-2.0 OR MIT"
487
+ }
488
+ ],
489
+ "purl": "pkg:cargo/portable-atomic@1.13.1",
490
+ "externalReferences": [
491
+ {
492
+ "type": "vcs",
493
+ "url": "https://github.com/taiki-e/portable-atomic"
494
+ }
495
+ ]
496
+ },
497
+ {
498
+ "type": "library",
499
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
500
+ "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
501
+ "name": "proc-macro2",
502
+ "version": "1.0.106",
503
+ "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
504
+ "scope": "required",
505
+ "hashes": [
506
+ {
507
+ "alg": "SHA-256",
508
+ "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
509
+ }
510
+ ],
511
+ "licenses": [
512
+ {
513
+ "expression": "MIT OR Apache-2.0"
514
+ }
515
+ ],
516
+ "purl": "pkg:cargo/proc-macro2@1.0.106",
517
+ "externalReferences": [
518
+ {
519
+ "type": "documentation",
520
+ "url": "https://docs.rs/proc-macro2"
521
+ },
522
+ {
523
+ "type": "vcs",
524
+ "url": "https://github.com/dtolnay/proc-macro2"
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "type": "library",
530
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
531
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
532
+ "name": "pyo3-build-config",
533
+ "version": "0.22.6",
534
+ "description": "Build configuration for the PyO3 ecosystem",
535
+ "scope": "required",
536
+ "hashes": [
537
+ {
538
+ "alg": "SHA-256",
539
+ "content": "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
540
+ }
541
+ ],
542
+ "licenses": [
543
+ {
544
+ "expression": "MIT OR Apache-2.0"
545
+ }
546
+ ],
547
+ "purl": "pkg:cargo/pyo3-build-config@0.22.6",
548
+ "externalReferences": [
549
+ {
550
+ "type": "website",
551
+ "url": "https://github.com/pyo3/pyo3"
552
+ },
553
+ {
554
+ "type": "vcs",
555
+ "url": "https://github.com/pyo3/pyo3"
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "type": "library",
561
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
562
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
563
+ "name": "pyo3-ffi",
564
+ "version": "0.22.6",
565
+ "description": "Python-API bindings for the PyO3 ecosystem",
566
+ "scope": "required",
567
+ "hashes": [
568
+ {
569
+ "alg": "SHA-256",
570
+ "content": "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
571
+ }
572
+ ],
573
+ "licenses": [
574
+ {
575
+ "expression": "MIT OR Apache-2.0"
576
+ }
577
+ ],
578
+ "purl": "pkg:cargo/pyo3-ffi@0.22.6",
579
+ "externalReferences": [
580
+ {
581
+ "type": "website",
582
+ "url": "https://github.com/pyo3/pyo3"
583
+ },
584
+ {
585
+ "type": "other",
586
+ "url": "python"
587
+ },
588
+ {
589
+ "type": "vcs",
590
+ "url": "https://github.com/pyo3/pyo3"
591
+ }
592
+ ]
593
+ },
594
+ {
595
+ "type": "library",
596
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
597
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
598
+ "name": "pyo3-macros-backend",
599
+ "version": "0.22.6",
600
+ "description": "Code generation for PyO3 package",
601
+ "scope": "required",
602
+ "hashes": [
603
+ {
604
+ "alg": "SHA-256",
605
+ "content": "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
606
+ }
607
+ ],
608
+ "licenses": [
609
+ {
610
+ "expression": "MIT OR Apache-2.0"
611
+ }
612
+ ],
613
+ "purl": "pkg:cargo/pyo3-macros-backend@0.22.6",
614
+ "externalReferences": [
615
+ {
616
+ "type": "website",
617
+ "url": "https://github.com/pyo3/pyo3"
618
+ },
619
+ {
620
+ "type": "vcs",
621
+ "url": "https://github.com/pyo3/pyo3"
622
+ }
623
+ ]
624
+ },
625
+ {
626
+ "type": "library",
627
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
628
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
629
+ "name": "pyo3-macros",
630
+ "version": "0.22.6",
631
+ "description": "Proc macros for PyO3 package",
632
+ "scope": "required",
633
+ "hashes": [
634
+ {
635
+ "alg": "SHA-256",
636
+ "content": "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
637
+ }
638
+ ],
639
+ "licenses": [
640
+ {
641
+ "expression": "MIT OR Apache-2.0"
642
+ }
643
+ ],
644
+ "purl": "pkg:cargo/pyo3-macros@0.22.6",
645
+ "externalReferences": [
646
+ {
647
+ "type": "website",
648
+ "url": "https://github.com/pyo3/pyo3"
649
+ },
650
+ {
651
+ "type": "vcs",
652
+ "url": "https://github.com/pyo3/pyo3"
653
+ }
654
+ ]
655
+ },
656
+ {
657
+ "type": "library",
658
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6",
659
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
660
+ "name": "pyo3",
661
+ "version": "0.22.6",
662
+ "description": "Bindings to Python interpreter",
663
+ "scope": "required",
664
+ "hashes": [
665
+ {
666
+ "alg": "SHA-256",
667
+ "content": "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
668
+ }
669
+ ],
670
+ "licenses": [
671
+ {
672
+ "expression": "MIT OR Apache-2.0"
673
+ }
674
+ ],
675
+ "purl": "pkg:cargo/pyo3@0.22.6",
676
+ "externalReferences": [
677
+ {
678
+ "type": "documentation",
679
+ "url": "https://docs.rs/crate/pyo3/"
680
+ },
681
+ {
682
+ "type": "website",
683
+ "url": "https://github.com/pyo3/pyo3"
684
+ },
685
+ {
686
+ "type": "vcs",
687
+ "url": "https://github.com/pyo3/pyo3"
688
+ }
689
+ ]
690
+ },
691
+ {
692
+ "type": "library",
693
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
694
+ "author": "David Tolnay <dtolnay@gmail.com>",
695
+ "name": "quote",
696
+ "version": "1.0.45",
697
+ "description": "Quasi-quoting macro quote!(...)",
698
+ "scope": "required",
699
+ "hashes": [
700
+ {
701
+ "alg": "SHA-256",
702
+ "content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
703
+ }
704
+ ],
705
+ "licenses": [
706
+ {
707
+ "expression": "MIT OR Apache-2.0"
708
+ }
709
+ ],
710
+ "purl": "pkg:cargo/quote@1.0.45",
711
+ "externalReferences": [
712
+ {
713
+ "type": "documentation",
714
+ "url": "https://docs.rs/quote/"
715
+ },
716
+ {
717
+ "type": "vcs",
718
+ "url": "https://github.com/dtolnay/quote"
719
+ }
720
+ ]
721
+ },
722
+ {
723
+ "type": "library",
724
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rawpointer@0.2.1",
725
+ "author": "bluss",
726
+ "name": "rawpointer",
727
+ "version": "0.2.1",
728
+ "description": "Extra methods for raw pointers and `NonNull<T>`. For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`), `offset` and `add` for `NonNull<T>`, and the function `ptrdistance`. ",
729
+ "scope": "required",
730
+ "hashes": [
731
+ {
732
+ "alg": "SHA-256",
733
+ "content": "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
734
+ }
735
+ ],
736
+ "licenses": [
737
+ {
738
+ "expression": "MIT OR Apache-2.0"
739
+ }
740
+ ],
741
+ "purl": "pkg:cargo/rawpointer@0.2.1",
742
+ "externalReferences": [
743
+ {
744
+ "type": "documentation",
745
+ "url": "https://docs.rs/rawpointer/"
746
+ },
747
+ {
748
+ "type": "vcs",
749
+ "url": "https://github.com/bluss/rawpointer/"
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "type": "library",
755
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0",
756
+ "author": "The Rust Project Developers",
757
+ "name": "rustc-hash",
758
+ "version": "1.1.0",
759
+ "description": "speed, non-cryptographic hash used in rustc",
760
+ "scope": "required",
761
+ "hashes": [
762
+ {
763
+ "alg": "SHA-256",
764
+ "content": "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
765
+ }
766
+ ],
767
+ "licenses": [
768
+ {
769
+ "expression": "Apache-2.0 OR MIT"
770
+ }
771
+ ],
772
+ "purl": "pkg:cargo/rustc-hash@1.1.0",
773
+ "externalReferences": [
774
+ {
775
+ "type": "vcs",
776
+ "url": "https://github.com/rust-lang-nursery/rustc-hash"
777
+ }
778
+ ]
779
+ },
780
+ {
781
+ "type": "library",
782
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
783
+ "author": "David Tolnay <dtolnay@gmail.com>",
784
+ "name": "rustversion",
785
+ "version": "1.0.22",
786
+ "description": "Conditional compilation according to rustc compiler version",
787
+ "scope": "excluded",
788
+ "hashes": [
789
+ {
790
+ "alg": "SHA-256",
791
+ "content": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
792
+ }
793
+ ],
794
+ "licenses": [
795
+ {
796
+ "expression": "MIT OR Apache-2.0"
797
+ }
798
+ ],
799
+ "purl": "pkg:cargo/rustversion@1.0.22",
800
+ "externalReferences": [
801
+ {
802
+ "type": "documentation",
803
+ "url": "https://docs.rs/rustversion"
804
+ },
805
+ {
806
+ "type": "vcs",
807
+ "url": "https://github.com/dtolnay/rustversion"
808
+ }
809
+ ]
810
+ },
811
+ {
812
+ "type": "library",
813
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
814
+ "author": "David Tolnay <dtolnay@gmail.com>",
815
+ "name": "syn",
816
+ "version": "2.0.117",
817
+ "description": "Parser for Rust source code",
818
+ "scope": "required",
819
+ "hashes": [
820
+ {
821
+ "alg": "SHA-256",
822
+ "content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
823
+ }
824
+ ],
825
+ "licenses": [
826
+ {
827
+ "expression": "MIT OR Apache-2.0"
828
+ }
829
+ ],
830
+ "purl": "pkg:cargo/syn@2.0.117",
831
+ "externalReferences": [
832
+ {
833
+ "type": "documentation",
834
+ "url": "https://docs.rs/syn"
835
+ },
836
+ {
837
+ "type": "vcs",
838
+ "url": "https://github.com/dtolnay/syn"
839
+ }
840
+ ]
841
+ },
842
+ {
843
+ "type": "library",
844
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16",
845
+ "author": "Dan Gohman <sunfish@mozilla.com>",
846
+ "name": "target-lexicon",
847
+ "version": "0.12.16",
848
+ "description": "Targeting utilities for compilers and related tools",
849
+ "scope": "required",
850
+ "hashes": [
851
+ {
852
+ "alg": "SHA-256",
853
+ "content": "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
854
+ }
855
+ ],
856
+ "licenses": [
857
+ {
858
+ "expression": "Apache-2.0 WITH LLVM-exception"
859
+ }
860
+ ],
861
+ "purl": "pkg:cargo/target-lexicon@0.12.16",
862
+ "externalReferences": [
863
+ {
864
+ "type": "documentation",
865
+ "url": "https://docs.rs/target-lexicon/"
866
+ },
867
+ {
868
+ "type": "vcs",
869
+ "url": "https://github.com/bytecodealliance/target-lexicon"
870
+ }
871
+ ]
872
+ },
873
+ {
874
+ "type": "library",
875
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
876
+ "author": "David Tolnay <dtolnay@gmail.com>",
877
+ "name": "unicode-ident",
878
+ "version": "1.0.24",
879
+ "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
880
+ "scope": "required",
881
+ "hashes": [
882
+ {
883
+ "alg": "SHA-256",
884
+ "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
885
+ }
886
+ ],
887
+ "licenses": [
888
+ {
889
+ "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
890
+ }
891
+ ],
892
+ "purl": "pkg:cargo/unicode-ident@1.0.24",
893
+ "externalReferences": [
894
+ {
895
+ "type": "documentation",
896
+ "url": "https://docs.rs/unicode-ident"
897
+ },
898
+ {
899
+ "type": "vcs",
900
+ "url": "https://github.com/dtolnay/unicode-ident"
901
+ }
902
+ ]
903
+ },
904
+ {
905
+ "type": "library",
906
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4",
907
+ "author": "David Tolnay <dtolnay@gmail.com>",
908
+ "name": "unindent",
909
+ "version": "0.2.4",
910
+ "description": "Remove a column of leading whitespace from a string",
911
+ "scope": "required",
912
+ "hashes": [
913
+ {
914
+ "alg": "SHA-256",
915
+ "content": "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
916
+ }
917
+ ],
918
+ "licenses": [
919
+ {
920
+ "expression": "MIT OR Apache-2.0"
921
+ }
922
+ ],
923
+ "purl": "pkg:cargo/unindent@0.2.4",
924
+ "externalReferences": [
925
+ {
926
+ "type": "documentation",
927
+ "url": "https://docs.rs/unindent"
928
+ },
929
+ {
930
+ "type": "vcs",
931
+ "url": "https://github.com/dtolnay/indoc"
932
+ }
933
+ ]
934
+ }
935
+ ],
936
+ "dependencies": [
937
+ {
938
+ "ref": "path+file:///C:/Users/runneradmin/AppData/Local/Temp/.tmpAvGxJF/grid_simulate-0.2.2#grid@0.2.2",
939
+ "dependsOn": [
940
+ "registry+https://github.com/rust-lang/crates.io-index#ndarray@0.16.1",
941
+ "registry+https://github.com/rust-lang/crates.io-index#numpy@0.22.1",
942
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6"
943
+ ]
944
+ },
945
+ {
946
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
947
+ },
948
+ {
949
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
950
+ },
951
+ {
952
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
953
+ },
954
+ {
955
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
956
+ "dependsOn": [
957
+ "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
958
+ ]
959
+ },
960
+ {
961
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
962
+ },
963
+ {
964
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#matrixmultiply@0.3.10",
965
+ "dependsOn": [
966
+ "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1",
967
+ "registry+https://github.com/rust-lang/crates.io-index#rawpointer@0.2.1"
968
+ ]
969
+ },
970
+ {
971
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
972
+ "dependsOn": [
973
+ "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
974
+ ]
975
+ },
976
+ {
977
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#ndarray@0.16.1",
978
+ "dependsOn": [
979
+ "registry+https://github.com/rust-lang/crates.io-index#matrixmultiply@0.3.10",
980
+ "registry+https://github.com/rust-lang/crates.io-index#num-complex@0.4.6",
981
+ "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46",
982
+ "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
983
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
984
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.7",
985
+ "registry+https://github.com/rust-lang/crates.io-index#rawpointer@0.2.1"
986
+ ]
987
+ },
988
+ {
989
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#num-complex@0.4.6",
990
+ "dependsOn": [
991
+ "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19"
992
+ ]
993
+ },
994
+ {
995
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46",
996
+ "dependsOn": [
997
+ "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19"
998
+ ]
999
+ },
1000
+ {
1001
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
1002
+ "dependsOn": [
1003
+ "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
1004
+ ]
1005
+ },
1006
+ {
1007
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#numpy@0.22.1",
1008
+ "dependsOn": [
1009
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1010
+ "registry+https://github.com/rust-lang/crates.io-index#ndarray@0.16.1",
1011
+ "registry+https://github.com/rust-lang/crates.io-index#num-complex@0.4.6",
1012
+ "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46",
1013
+ "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
1014
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6",
1015
+ "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0"
1016
+ ]
1017
+ },
1018
+ {
1019
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
1020
+ },
1021
+ {
1022
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.7",
1023
+ "dependsOn": [
1024
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
1025
+ ]
1026
+ },
1027
+ {
1028
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
1029
+ },
1030
+ {
1031
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1032
+ "dependsOn": [
1033
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1034
+ ]
1035
+ },
1036
+ {
1037
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
1038
+ "dependsOn": [
1039
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
1040
+ "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16"
1041
+ ]
1042
+ },
1043
+ {
1044
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
1045
+ "dependsOn": [
1046
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1047
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6"
1048
+ ]
1049
+ },
1050
+ {
1051
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
1052
+ "dependsOn": [
1053
+ "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
1054
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1055
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
1056
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1057
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1058
+ ]
1059
+ },
1060
+ {
1061
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
1062
+ "dependsOn": [
1063
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1064
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
1065
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1066
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1067
+ ]
1068
+ },
1069
+ {
1070
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6",
1071
+ "dependsOn": [
1072
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1073
+ "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
1074
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1075
+ "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
1076
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
1077
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
1078
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
1079
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
1080
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
1081
+ "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
1082
+ ]
1083
+ },
1084
+ {
1085
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1086
+ "dependsOn": [
1087
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
1088
+ ]
1089
+ },
1090
+ {
1091
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#rawpointer@0.2.1"
1092
+ },
1093
+ {
1094
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0"
1095
+ },
1096
+ {
1097
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
1098
+ },
1099
+ {
1100
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
1101
+ "dependsOn": [
1102
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1103
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1104
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1105
+ ]
1106
+ },
1107
+ {
1108
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16"
1109
+ },
1110
+ {
1111
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1112
+ },
1113
+ {
1114
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
1115
+ }
1116
+ ]
1117
+ }