inventor-kit 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.
Files changed (62) hide show
  1. inventor_kit-0.1.0/Cargo.lock +638 -0
  2. inventor_kit-0.1.0/Cargo.toml +10 -0
  3. inventor_kit-0.1.0/LICENSE +21 -0
  4. inventor_kit-0.1.0/PKG-INFO +126 -0
  5. inventor_kit-0.1.0/README.ja.md +92 -0
  6. inventor_kit-0.1.0/README.md +98 -0
  7. inventor_kit-0.1.0/THIRD_PARTY_NOTICES.md +36 -0
  8. inventor_kit-0.1.0/crates/inventor-core/Cargo.toml +22 -0
  9. inventor_kit-0.1.0/crates/inventor-core/examples/inspect.rs +38 -0
  10. inventor_kit-0.1.0/crates/inventor-core/examples/inspect_assembly.rs +6 -0
  11. inventor_kit-0.1.0/crates/inventor-core/src/analysis.rs +240 -0
  12. inventor_kit-0.1.0/crates/inventor-core/src/assembly/matrix.rs +29 -0
  13. inventor_kit-0.1.0/crates/inventor-core/src/assembly/mod.rs +165 -0
  14. inventor_kit-0.1.0/crates/inventor-core/src/assembly/records.rs +449 -0
  15. inventor_kit-0.1.0/crates/inventor-core/src/assembly/resolve.rs +804 -0
  16. inventor_kit-0.1.0/crates/inventor-core/src/assembly/tests.rs +381 -0
  17. inventor_kit-0.1.0/crates/inventor-core/src/assembly/ufrx.rs +399 -0
  18. inventor_kit-0.1.0/crates/inventor-core/src/candidate.rs +680 -0
  19. inventor_kit-0.1.0/crates/inventor-core/src/candidate_tests.rs +254 -0
  20. inventor_kit-0.1.0/crates/inventor-core/src/document.rs +411 -0
  21. inventor_kit-0.1.0/crates/inventor-core/src/fuzzing.rs +61 -0
  22. inventor_kit-0.1.0/crates/inventor-core/src/lib.rs +390 -0
  23. inventor_kit-0.1.0/crates/inventor-core/src/property.rs +649 -0
  24. inventor_kit-0.1.0/crates/inventor-core/src/property_tests.rs +395 -0
  25. inventor_kit-0.1.0/crates/inventor-core/src/read.rs +77 -0
  26. inventor_kit-0.1.0/crates/inventor-core/src/rse.rs +315 -0
  27. inventor_kit-0.1.0/crates/inventor-core/src/tests.rs +447 -0
  28. inventor_kit-0.1.0/crates/inventor-core/src/thumbnail.rs +133 -0
  29. inventor_kit-0.1.0/crates/inventor-py/Cargo.toml +17 -0
  30. inventor_kit-0.1.0/crates/inventor-py/src/lib.rs +148 -0
  31. inventor_kit-0.1.0/docs/README.ja.md +17 -0
  32. inventor_kit-0.1.0/docs/README.md +18 -0
  33. inventor_kit-0.1.0/docs/api.ja.md +105 -0
  34. inventor_kit-0.1.0/docs/api.md +120 -0
  35. inventor_kit-0.1.0/docs/development.ja.md +91 -0
  36. inventor_kit-0.1.0/docs/development.md +95 -0
  37. inventor_kit-0.1.0/docs/format-reference.ja.md +41 -0
  38. inventor_kit-0.1.0/docs/format-reference.md +49 -0
  39. inventor_kit-0.1.0/docs/releasing.ja.md +58 -0
  40. inventor_kit-0.1.0/docs/releasing.md +65 -0
  41. inventor_kit-0.1.0/docs/support.ja.md +30 -0
  42. inventor_kit-0.1.0/docs/support.md +38 -0
  43. inventor_kit-0.1.0/docs/validation.ja.md +66 -0
  44. inventor_kit-0.1.0/docs/validation.md +74 -0
  45. inventor_kit-0.1.0/licenses/cadmpeg-Apache-2.0.txt +201 -0
  46. inventor_kit-0.1.0/licenses/cq-acis-MIT.txt +21 -0
  47. inventor_kit-0.1.0/licenses/crc32fast-MIT.txt +21 -0
  48. inventor_kit-0.1.0/licenses/encoding_rs-COPYRIGHT.txt +17 -0
  49. inventor_kit-0.1.0/licenses/encoding_rs-MIT.txt +25 -0
  50. inventor_kit-0.1.0/licenses/encoding_rs-WHATWG.txt +26 -0
  51. inventor_kit-0.1.0/licenses/ezdxf-MIT.txt +21 -0
  52. inventor_kit-0.1.0/licenses/sha2-dependencies-MIT.txt +209 -0
  53. inventor_kit-0.1.0/pyproject.toml +30 -0
  54. inventor_kit-0.1.0/python/inventor_kit/__init__.py +95 -0
  55. inventor_kit-0.1.0/python/inventor_kit/__main__.py +20 -0
  56. inventor_kit-0.1.0/python/inventor_kit/assembly.py +306 -0
  57. inventor_kit-0.1.0/python/inventor_kit/assembly_step.py +345 -0
  58. inventor_kit-0.1.0/python/inventor_kit/capabilities.json +37 -0
  59. inventor_kit-0.1.0/python/inventor_kit/document.py +253 -0
  60. inventor_kit-0.1.0/python/inventor_kit/geometry.py +137 -0
  61. inventor_kit-0.1.0/python/inventor_kit/limits.py +41 -0
  62. inventor_kit-0.1.0/schemas/vendor-oracle-v1.schema.json +397 -0
@@ -0,0 +1,638 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "acis-core"
7
+ version = "0.3.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "a801b93be12802fee398daf3ea49e5806efec5dbcd5a724277b3353669ce57fd"
10
+ dependencies = [
11
+ "num-bigint",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "acis-py-bridge"
16
+ version = "0.3.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "d1bfab734d7a51cabf01e6600d310723cf01d5fb34aab491cd0a7731dfe31ef5"
19
+ dependencies = [
20
+ "acis-core",
21
+ "num-bigint",
22
+ "pyo3",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "adler2"
27
+ version = "2.0.1"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
30
+
31
+ [[package]]
32
+ name = "autocfg"
33
+ version = "1.5.1"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
36
+
37
+ [[package]]
38
+ name = "block-buffer"
39
+ version = "0.10.4"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
42
+ dependencies = [
43
+ "generic-array",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "bumpalo"
48
+ version = "3.20.3"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
51
+
52
+ [[package]]
53
+ name = "cc"
54
+ version = "1.4.5"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
57
+ dependencies = [
58
+ "find-msvc-tools",
59
+ "jobserver",
60
+ "libc",
61
+ "shlex",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "cfb"
66
+ version = "0.14.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "a347dcabdae9c31b0825fd6a8bed285ec9c2acb89c47827126d52fa4f59cece3"
69
+ dependencies = [
70
+ "fnv",
71
+ "uuid",
72
+ "web-time",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "cfg-if"
77
+ version = "1.0.4"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
80
+
81
+ [[package]]
82
+ name = "cpufeatures"
83
+ version = "0.2.17"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
86
+ dependencies = [
87
+ "libc",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "crc32fast"
92
+ version = "1.5.1"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
95
+ dependencies = [
96
+ "cfg-if",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "crypto-common"
101
+ version = "0.1.7"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
104
+ dependencies = [
105
+ "generic-array",
106
+ "typenum",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "digest"
111
+ version = "0.10.7"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
114
+ dependencies = [
115
+ "block-buffer",
116
+ "crypto-common",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "encoding_rs"
121
+ version = "0.8.35"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
124
+ dependencies = [
125
+ "cfg-if",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "find-msvc-tools"
130
+ version = "0.1.12"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
133
+
134
+ [[package]]
135
+ name = "flate2"
136
+ version = "1.1.10"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
139
+ dependencies = [
140
+ "crc32fast",
141
+ "miniz_oxide",
142
+ "zlib-rs",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "fnv"
147
+ version = "1.0.7"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
150
+
151
+ [[package]]
152
+ name = "futures-core"
153
+ version = "0.3.34"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
156
+
157
+ [[package]]
158
+ name = "futures-task"
159
+ version = "0.3.34"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
162
+
163
+ [[package]]
164
+ name = "futures-util"
165
+ version = "0.3.34"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
168
+ dependencies = [
169
+ "futures-core",
170
+ "futures-task",
171
+ "pin-project-lite",
172
+ "slab",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "generic-array"
177
+ version = "0.14.7"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
180
+ dependencies = [
181
+ "typenum",
182
+ "version_check",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "getrandom"
187
+ version = "0.4.3"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
190
+ dependencies = [
191
+ "cfg-if",
192
+ "libc",
193
+ "r-efi",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "heck"
198
+ version = "0.5.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
201
+
202
+ [[package]]
203
+ name = "inventor-core"
204
+ version = "0.1.0"
205
+ dependencies = [
206
+ "acis-core",
207
+ "cfb",
208
+ "crc32fast",
209
+ "encoding_rs",
210
+ "flate2",
211
+ "serde",
212
+ "serde_json",
213
+ "sha2",
214
+ "zstd",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "inventor-py"
219
+ version = "0.1.0"
220
+ dependencies = [
221
+ "acis-py-bridge",
222
+ "inventor-core",
223
+ "pyo3",
224
+ "serde_json",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "itoa"
229
+ version = "1.0.18"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
232
+
233
+ [[package]]
234
+ name = "jobserver"
235
+ version = "0.1.35"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
238
+ dependencies = [
239
+ "getrandom",
240
+ "libc",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "js-sys"
245
+ version = "0.3.105"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
248
+ dependencies = [
249
+ "cfg-if",
250
+ "futures-util",
251
+ "wasm-bindgen",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "libc"
256
+ version = "0.2.189"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
259
+
260
+ [[package]]
261
+ name = "memchr"
262
+ version = "2.8.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
265
+
266
+ [[package]]
267
+ name = "miniz_oxide"
268
+ version = "0.9.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
271
+ dependencies = [
272
+ "adler2",
273
+ "simd-adler32",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "num-bigint"
278
+ version = "0.4.8"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
281
+ dependencies = [
282
+ "num-integer",
283
+ "num-traits",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "num-integer"
288
+ version = "0.1.47"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
291
+ dependencies = [
292
+ "num-traits",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "num-traits"
297
+ version = "0.2.19"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
300
+ dependencies = [
301
+ "autocfg",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "once_cell"
306
+ version = "1.21.4"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
309
+
310
+ [[package]]
311
+ name = "pin-project-lite"
312
+ version = "0.2.17"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
315
+
316
+ [[package]]
317
+ name = "pkg-config"
318
+ version = "0.3.34"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
321
+
322
+ [[package]]
323
+ name = "portable-atomic"
324
+ version = "1.15.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
327
+
328
+ [[package]]
329
+ name = "proc-macro2"
330
+ version = "1.0.107"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
333
+ dependencies = [
334
+ "unicode-ident",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "pyo3"
339
+ version = "0.29.2"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
342
+ dependencies = [
343
+ "libc",
344
+ "num-bigint",
345
+ "num-traits",
346
+ "once_cell",
347
+ "portable-atomic",
348
+ "pyo3-build-config",
349
+ "pyo3-ffi",
350
+ "pyo3-macros",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "pyo3-build-config"
355
+ version = "0.29.2"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
358
+ dependencies = [
359
+ "target-lexicon",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "pyo3-ffi"
364
+ version = "0.29.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
367
+ dependencies = [
368
+ "libc",
369
+ "pyo3-build-config",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "pyo3-macros"
374
+ version = "0.29.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
377
+ dependencies = [
378
+ "proc-macro2",
379
+ "pyo3-macros-backend",
380
+ "quote",
381
+ "syn 2.0.119",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "pyo3-macros-backend"
386
+ version = "0.29.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
389
+ dependencies = [
390
+ "heck",
391
+ "proc-macro2",
392
+ "quote",
393
+ "syn 2.0.119",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "quote"
398
+ version = "1.0.47"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
401
+ dependencies = [
402
+ "proc-macro2",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "r-efi"
407
+ version = "6.0.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
410
+
411
+ [[package]]
412
+ name = "rustversion"
413
+ version = "1.0.23"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
416
+
417
+ [[package]]
418
+ name = "serde"
419
+ version = "1.0.229"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
422
+ dependencies = [
423
+ "serde_core",
424
+ "serde_derive",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "serde_core"
429
+ version = "1.0.229"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
432
+ dependencies = [
433
+ "serde_derive",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "serde_derive"
438
+ version = "1.0.229"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
441
+ dependencies = [
442
+ "proc-macro2",
443
+ "quote",
444
+ "syn 3.0.5",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "serde_json"
449
+ version = "1.0.151"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
452
+ dependencies = [
453
+ "itoa",
454
+ "memchr",
455
+ "serde",
456
+ "serde_core",
457
+ "zmij",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "sha2"
462
+ version = "0.10.9"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
465
+ dependencies = [
466
+ "cfg-if",
467
+ "cpufeatures",
468
+ "digest",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "shlex"
473
+ version = "2.0.1"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
476
+
477
+ [[package]]
478
+ name = "simd-adler32"
479
+ version = "0.3.10"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
482
+
483
+ [[package]]
484
+ name = "slab"
485
+ version = "0.4.12"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
488
+
489
+ [[package]]
490
+ name = "syn"
491
+ version = "2.0.119"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
494
+ dependencies = [
495
+ "proc-macro2",
496
+ "quote",
497
+ "unicode-ident",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "syn"
502
+ version = "3.0.5"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
505
+ dependencies = [
506
+ "proc-macro2",
507
+ "quote",
508
+ "unicode-ident",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "target-lexicon"
513
+ version = "0.13.5"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
516
+
517
+ [[package]]
518
+ name = "typenum"
519
+ version = "1.20.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
522
+
523
+ [[package]]
524
+ name = "unicode-ident"
525
+ version = "1.0.24"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
528
+
529
+ [[package]]
530
+ name = "uuid"
531
+ version = "1.24.1"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
534
+ dependencies = [
535
+ "js-sys",
536
+ "wasm-bindgen",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "version_check"
541
+ version = "0.9.5"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
544
+
545
+ [[package]]
546
+ name = "wasm-bindgen"
547
+ version = "0.2.128"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
550
+ dependencies = [
551
+ "cfg-if",
552
+ "once_cell",
553
+ "rustversion",
554
+ "wasm-bindgen-macro",
555
+ "wasm-bindgen-shared",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "wasm-bindgen-macro"
560
+ version = "0.2.128"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
563
+ dependencies = [
564
+ "quote",
565
+ "wasm-bindgen-macro-support",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "wasm-bindgen-macro-support"
570
+ version = "0.2.128"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
573
+ dependencies = [
574
+ "bumpalo",
575
+ "proc-macro2",
576
+ "quote",
577
+ "syn 3.0.5",
578
+ "wasm-bindgen-shared",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "wasm-bindgen-shared"
583
+ version = "0.2.128"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
586
+ dependencies = [
587
+ "unicode-ident",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "web-time"
592
+ version = "1.1.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
595
+ dependencies = [
596
+ "js-sys",
597
+ "wasm-bindgen",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "zlib-rs"
602
+ version = "0.6.7"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
605
+
606
+ [[package]]
607
+ name = "zmij"
608
+ version = "1.0.23"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
611
+
612
+ [[package]]
613
+ name = "zstd"
614
+ version = "0.13.3"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
617
+ dependencies = [
618
+ "zstd-safe",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "zstd-safe"
623
+ version = "7.2.4"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
626
+ dependencies = [
627
+ "zstd-sys",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "zstd-sys"
632
+ version = "2.0.16+zstd.1.5.7"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
635
+ dependencies = [
636
+ "cc",
637
+ "pkg-config",
638
+ ]
@@ -0,0 +1,10 @@
1
+ [workspace]
2
+ members = ["crates/inventor-py"]
3
+ resolver = "2"
4
+
5
+ [workspace.dependencies]
6
+ acis-core = "=0.3.2"
7
+ acis-py-bridge = "=0.3.2"
8
+ pyo3 = { version = "0.29.2", features = ["abi3-py310"] }
9
+ serde = { version = "1.0.228", features = ["derive"] }
10
+ serde_json = "1.0.150"
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 cq-acis contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.