validkit-py-core 1.3.3.dev1__cp312-cp312-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.
@@ -0,0 +1,5 @@
1
+ from .validkit_core import *
2
+
3
+ __doc__ = validkit_core.__doc__
4
+ if hasattr(validkit_core, "__all__"):
5
+ __all__ = validkit_core.__all__
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: validkit-py-core
3
+ Version: 1.3.3.dev1
4
+ Classifier: Programming Language :: Python :: 3
5
+ Classifier: Programming Language :: Rust
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Operating System :: OS Independent
8
+ Summary: Optional native validation core for ValidKit.
9
+ Author-email: Disnana <support@disnana.com>
10
+ License: MIT
11
+ Requires-Python: >=3.9
@@ -0,0 +1,6 @@
1
+ validkit_core/__init__.py,sha256=_nLMgKIIz4aytClarbRYXSVFUFvuaSW8JjU4aqb-Drs,135
2
+ validkit_core/validkit_core.cp312-win_amd64.pyd,sha256=-uN73RyDIlFBBu8Cxro5ok042cawaNhd0S5K84dcNqQ,306688
3
+ validkit_py_core-1.3.3.dev1.dist-info/METADATA,sha256=skLP_NC1N57HnE30Qbjrcu3fXLOPK-cH0hJwjdI3z0g,387
4
+ validkit_py_core-1.3.3.dev1.dist-info/WHEEL,sha256=SN7W5s0Ji01-9u_6QL7cEnscsXvljOVQDFMt-2tILwI,97
5
+ validkit_py_core-1.3.3.dev1.dist-info/sboms/validkit-core.cyclonedx.json,sha256=DK9Mj27q3X8DddO4LNS6TxxB8oPWfKWfY15Y8J3zqNs,23655
6
+ validkit_py_core-1.3.3.dev1.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: cp312-cp312-win_amd64
@@ -0,0 +1,771 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "version": 1,
5
+ "serialNumber": "urn:uuid:360a03ef-72d3-40f2-9954-61748777c920",
6
+ "metadata": {
7
+ "timestamp": "2026-07-06T11:06:38.752786900Z",
8
+ "tools": [
9
+ {
10
+ "vendor": "CycloneDX",
11
+ "name": "cargo-cyclonedx",
12
+ "version": "0.5.9"
13
+ }
14
+ ],
15
+ "component": {
16
+ "type": "library",
17
+ "bom-ref": "path+file:///D:/a/ValidKit/ValidKit/src/validkit_core#validkit-core@1.3.3-dev1",
18
+ "name": "validkit-core",
19
+ "version": "1.3.3-dev1",
20
+ "description": "Experimental Rust validation core for ValidKit.",
21
+ "scope": "required",
22
+ "licenses": [
23
+ {
24
+ "expression": "MIT"
25
+ }
26
+ ],
27
+ "purl": "pkg:cargo/validkit-core@1.3.3-dev1?download_url=file://.",
28
+ "components": [
29
+ {
30
+ "type": "library",
31
+ "bom-ref": "path+file:///D:/a/ValidKit/ValidKit/src/validkit_core#validkit-core@1.3.3-dev1 bin-target-0",
32
+ "name": "validkit_core",
33
+ "version": "1.3.3-dev1",
34
+ "purl": "pkg:cargo/validkit-core@1.3.3-dev1?download_url=file://.#src/lib.rs"
35
+ }
36
+ ]
37
+ },
38
+ "properties": [
39
+ {
40
+ "name": "cdx:rustc:sbom:target:all_targets",
41
+ "value": "true"
42
+ }
43
+ ]
44
+ },
45
+ "components": [
46
+ {
47
+ "type": "library",
48
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1",
49
+ "author": "Josh Stone <cuviper@gmail.com>",
50
+ "name": "autocfg",
51
+ "version": "1.5.1",
52
+ "description": "Automatic cfg for Rust compiler features",
53
+ "scope": "excluded",
54
+ "hashes": [
55
+ {
56
+ "alg": "SHA-256",
57
+ "content": "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
58
+ }
59
+ ],
60
+ "licenses": [
61
+ {
62
+ "expression": "Apache-2.0 OR MIT"
63
+ }
64
+ ],
65
+ "purl": "pkg:cargo/autocfg@1.5.1",
66
+ "externalReferences": [
67
+ {
68
+ "type": "documentation",
69
+ "url": "https://docs.rs/autocfg/"
70
+ },
71
+ {
72
+ "type": "vcs",
73
+ "url": "https://github.com/cuviper/autocfg"
74
+ }
75
+ ]
76
+ },
77
+ {
78
+ "type": "library",
79
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
80
+ "author": "Alex Crichton <alex@alexcrichton.com>",
81
+ "name": "cfg-if",
82
+ "version": "1.0.4",
83
+ "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. ",
84
+ "scope": "required",
85
+ "hashes": [
86
+ {
87
+ "alg": "SHA-256",
88
+ "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
89
+ }
90
+ ],
91
+ "licenses": [
92
+ {
93
+ "expression": "MIT OR Apache-2.0"
94
+ }
95
+ ],
96
+ "purl": "pkg:cargo/cfg-if@1.0.4",
97
+ "externalReferences": [
98
+ {
99
+ "type": "vcs",
100
+ "url": "https://github.com/rust-lang/cfg-if"
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "type": "library",
106
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
107
+ "name": "heck",
108
+ "version": "0.5.0",
109
+ "description": "heck is a case conversion library.",
110
+ "scope": "required",
111
+ "hashes": [
112
+ {
113
+ "alg": "SHA-256",
114
+ "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
115
+ }
116
+ ],
117
+ "licenses": [
118
+ {
119
+ "expression": "MIT OR Apache-2.0"
120
+ }
121
+ ],
122
+ "purl": "pkg:cargo/heck@0.5.0",
123
+ "externalReferences": [
124
+ {
125
+ "type": "vcs",
126
+ "url": "https://github.com/withoutboats/heck"
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "type": "library",
132
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
133
+ "author": "David Tolnay <dtolnay@gmail.com>",
134
+ "name": "indoc",
135
+ "version": "2.0.7",
136
+ "description": "Indented document literals",
137
+ "scope": "required",
138
+ "hashes": [
139
+ {
140
+ "alg": "SHA-256",
141
+ "content": "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
142
+ }
143
+ ],
144
+ "licenses": [
145
+ {
146
+ "expression": "MIT OR Apache-2.0"
147
+ }
148
+ ],
149
+ "purl": "pkg:cargo/indoc@2.0.7",
150
+ "externalReferences": [
151
+ {
152
+ "type": "documentation",
153
+ "url": "https://docs.rs/indoc"
154
+ },
155
+ {
156
+ "type": "vcs",
157
+ "url": "https://github.com/dtolnay/indoc"
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ "type": "library",
163
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
164
+ "author": "The Rust Project Developers",
165
+ "name": "libc",
166
+ "version": "0.2.186",
167
+ "description": "Raw FFI bindings to platform libraries like libc.",
168
+ "scope": "required",
169
+ "hashes": [
170
+ {
171
+ "alg": "SHA-256",
172
+ "content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
173
+ }
174
+ ],
175
+ "licenses": [
176
+ {
177
+ "expression": "MIT OR Apache-2.0"
178
+ }
179
+ ],
180
+ "purl": "pkg:cargo/libc@0.2.186",
181
+ "externalReferences": [
182
+ {
183
+ "type": "vcs",
184
+ "url": "https://github.com/rust-lang/libc"
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "type": "library",
190
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
191
+ "author": "Gilad Naaman <gilad.naaman@gmail.com>",
192
+ "name": "memoffset",
193
+ "version": "0.9.1",
194
+ "description": "offset_of functionality for Rust structs.",
195
+ "scope": "required",
196
+ "hashes": [
197
+ {
198
+ "alg": "SHA-256",
199
+ "content": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
200
+ }
201
+ ],
202
+ "licenses": [
203
+ {
204
+ "expression": "MIT"
205
+ }
206
+ ],
207
+ "purl": "pkg:cargo/memoffset@0.9.1",
208
+ "externalReferences": [
209
+ {
210
+ "type": "vcs",
211
+ "url": "https://github.com/Gilnaa/memoffset"
212
+ }
213
+ ]
214
+ },
215
+ {
216
+ "type": "library",
217
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
218
+ "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
219
+ "name": "once_cell",
220
+ "version": "1.21.4",
221
+ "description": "Single assignment cells and lazy values.",
222
+ "scope": "required",
223
+ "hashes": [
224
+ {
225
+ "alg": "SHA-256",
226
+ "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
227
+ }
228
+ ],
229
+ "licenses": [
230
+ {
231
+ "expression": "MIT OR Apache-2.0"
232
+ }
233
+ ],
234
+ "purl": "pkg:cargo/once_cell@1.21.4",
235
+ "externalReferences": [
236
+ {
237
+ "type": "documentation",
238
+ "url": "https://docs.rs/once_cell"
239
+ },
240
+ {
241
+ "type": "vcs",
242
+ "url": "https://github.com/matklad/once_cell"
243
+ }
244
+ ]
245
+ },
246
+ {
247
+ "type": "library",
248
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
249
+ "name": "portable-atomic",
250
+ "version": "1.13.1",
251
+ "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ",
252
+ "scope": "required",
253
+ "hashes": [
254
+ {
255
+ "alg": "SHA-256",
256
+ "content": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
257
+ }
258
+ ],
259
+ "licenses": [
260
+ {
261
+ "expression": "Apache-2.0 OR MIT"
262
+ }
263
+ ],
264
+ "purl": "pkg:cargo/portable-atomic@1.13.1",
265
+ "externalReferences": [
266
+ {
267
+ "type": "vcs",
268
+ "url": "https://github.com/taiki-e/portable-atomic"
269
+ }
270
+ ]
271
+ },
272
+ {
273
+ "type": "library",
274
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
275
+ "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
276
+ "name": "proc-macro2",
277
+ "version": "1.0.106",
278
+ "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
279
+ "scope": "required",
280
+ "hashes": [
281
+ {
282
+ "alg": "SHA-256",
283
+ "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
284
+ }
285
+ ],
286
+ "licenses": [
287
+ {
288
+ "expression": "MIT OR Apache-2.0"
289
+ }
290
+ ],
291
+ "purl": "pkg:cargo/proc-macro2@1.0.106",
292
+ "externalReferences": [
293
+ {
294
+ "type": "documentation",
295
+ "url": "https://docs.rs/proc-macro2"
296
+ },
297
+ {
298
+ "type": "vcs",
299
+ "url": "https://github.com/dtolnay/proc-macro2"
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "type": "library",
305
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
306
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
307
+ "name": "pyo3-build-config",
308
+ "version": "0.22.6",
309
+ "description": "Build configuration for the PyO3 ecosystem",
310
+ "scope": "required",
311
+ "hashes": [
312
+ {
313
+ "alg": "SHA-256",
314
+ "content": "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
315
+ }
316
+ ],
317
+ "licenses": [
318
+ {
319
+ "expression": "MIT OR Apache-2.0"
320
+ }
321
+ ],
322
+ "purl": "pkg:cargo/pyo3-build-config@0.22.6",
323
+ "externalReferences": [
324
+ {
325
+ "type": "website",
326
+ "url": "https://github.com/pyo3/pyo3"
327
+ },
328
+ {
329
+ "type": "vcs",
330
+ "url": "https://github.com/pyo3/pyo3"
331
+ }
332
+ ]
333
+ },
334
+ {
335
+ "type": "library",
336
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
337
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
338
+ "name": "pyo3-ffi",
339
+ "version": "0.22.6",
340
+ "description": "Python-API bindings for the PyO3 ecosystem",
341
+ "scope": "required",
342
+ "hashes": [
343
+ {
344
+ "alg": "SHA-256",
345
+ "content": "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
346
+ }
347
+ ],
348
+ "licenses": [
349
+ {
350
+ "expression": "MIT OR Apache-2.0"
351
+ }
352
+ ],
353
+ "purl": "pkg:cargo/pyo3-ffi@0.22.6",
354
+ "externalReferences": [
355
+ {
356
+ "type": "website",
357
+ "url": "https://github.com/pyo3/pyo3"
358
+ },
359
+ {
360
+ "type": "other",
361
+ "url": "python"
362
+ },
363
+ {
364
+ "type": "vcs",
365
+ "url": "https://github.com/pyo3/pyo3"
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "type": "library",
371
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
372
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
373
+ "name": "pyo3-macros-backend",
374
+ "version": "0.22.6",
375
+ "description": "Code generation for PyO3 package",
376
+ "scope": "required",
377
+ "hashes": [
378
+ {
379
+ "alg": "SHA-256",
380
+ "content": "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
381
+ }
382
+ ],
383
+ "licenses": [
384
+ {
385
+ "expression": "MIT OR Apache-2.0"
386
+ }
387
+ ],
388
+ "purl": "pkg:cargo/pyo3-macros-backend@0.22.6",
389
+ "externalReferences": [
390
+ {
391
+ "type": "website",
392
+ "url": "https://github.com/pyo3/pyo3"
393
+ },
394
+ {
395
+ "type": "vcs",
396
+ "url": "https://github.com/pyo3/pyo3"
397
+ }
398
+ ]
399
+ },
400
+ {
401
+ "type": "library",
402
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
403
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
404
+ "name": "pyo3-macros",
405
+ "version": "0.22.6",
406
+ "description": "Proc macros for PyO3 package",
407
+ "scope": "required",
408
+ "hashes": [
409
+ {
410
+ "alg": "SHA-256",
411
+ "content": "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
412
+ }
413
+ ],
414
+ "licenses": [
415
+ {
416
+ "expression": "MIT OR Apache-2.0"
417
+ }
418
+ ],
419
+ "purl": "pkg:cargo/pyo3-macros@0.22.6",
420
+ "externalReferences": [
421
+ {
422
+ "type": "website",
423
+ "url": "https://github.com/pyo3/pyo3"
424
+ },
425
+ {
426
+ "type": "vcs",
427
+ "url": "https://github.com/pyo3/pyo3"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "type": "library",
433
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6",
434
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
435
+ "name": "pyo3",
436
+ "version": "0.22.6",
437
+ "description": "Bindings to Python interpreter",
438
+ "scope": "required",
439
+ "hashes": [
440
+ {
441
+ "alg": "SHA-256",
442
+ "content": "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
443
+ }
444
+ ],
445
+ "licenses": [
446
+ {
447
+ "expression": "MIT OR Apache-2.0"
448
+ }
449
+ ],
450
+ "purl": "pkg:cargo/pyo3@0.22.6",
451
+ "externalReferences": [
452
+ {
453
+ "type": "documentation",
454
+ "url": "https://docs.rs/crate/pyo3/"
455
+ },
456
+ {
457
+ "type": "website",
458
+ "url": "https://github.com/pyo3/pyo3"
459
+ },
460
+ {
461
+ "type": "vcs",
462
+ "url": "https://github.com/pyo3/pyo3"
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "type": "library",
468
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
469
+ "author": "David Tolnay <dtolnay@gmail.com>",
470
+ "name": "quote",
471
+ "version": "1.0.46",
472
+ "description": "Quasi-quoting macro quote!(...)",
473
+ "scope": "required",
474
+ "hashes": [
475
+ {
476
+ "alg": "SHA-256",
477
+ "content": "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
478
+ }
479
+ ],
480
+ "licenses": [
481
+ {
482
+ "expression": "MIT OR Apache-2.0"
483
+ }
484
+ ],
485
+ "purl": "pkg:cargo/quote@1.0.46",
486
+ "externalReferences": [
487
+ {
488
+ "type": "documentation",
489
+ "url": "https://docs.rs/quote/"
490
+ },
491
+ {
492
+ "type": "vcs",
493
+ "url": "https://github.com/dtolnay/quote"
494
+ }
495
+ ]
496
+ },
497
+ {
498
+ "type": "library",
499
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
500
+ "author": "David Tolnay <dtolnay@gmail.com>",
501
+ "name": "rustversion",
502
+ "version": "1.0.22",
503
+ "description": "Conditional compilation according to rustc compiler version",
504
+ "scope": "excluded",
505
+ "hashes": [
506
+ {
507
+ "alg": "SHA-256",
508
+ "content": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
509
+ }
510
+ ],
511
+ "licenses": [
512
+ {
513
+ "expression": "MIT OR Apache-2.0"
514
+ }
515
+ ],
516
+ "purl": "pkg:cargo/rustversion@1.0.22",
517
+ "externalReferences": [
518
+ {
519
+ "type": "documentation",
520
+ "url": "https://docs.rs/rustversion"
521
+ },
522
+ {
523
+ "type": "vcs",
524
+ "url": "https://github.com/dtolnay/rustversion"
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "type": "library",
530
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118",
531
+ "author": "David Tolnay <dtolnay@gmail.com>",
532
+ "name": "syn",
533
+ "version": "2.0.118",
534
+ "description": "Parser for Rust source code",
535
+ "scope": "required",
536
+ "hashes": [
537
+ {
538
+ "alg": "SHA-256",
539
+ "content": "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
540
+ }
541
+ ],
542
+ "licenses": [
543
+ {
544
+ "expression": "MIT OR Apache-2.0"
545
+ }
546
+ ],
547
+ "purl": "pkg:cargo/syn@2.0.118",
548
+ "externalReferences": [
549
+ {
550
+ "type": "documentation",
551
+ "url": "https://docs.rs/syn"
552
+ },
553
+ {
554
+ "type": "vcs",
555
+ "url": "https://github.com/dtolnay/syn"
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "type": "library",
561
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16",
562
+ "author": "Dan Gohman <sunfish@mozilla.com>",
563
+ "name": "target-lexicon",
564
+ "version": "0.12.16",
565
+ "description": "Targeting utilities for compilers and related tools",
566
+ "scope": "required",
567
+ "hashes": [
568
+ {
569
+ "alg": "SHA-256",
570
+ "content": "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
571
+ }
572
+ ],
573
+ "licenses": [
574
+ {
575
+ "expression": "Apache-2.0 WITH LLVM-exception"
576
+ }
577
+ ],
578
+ "purl": "pkg:cargo/target-lexicon@0.12.16",
579
+ "externalReferences": [
580
+ {
581
+ "type": "documentation",
582
+ "url": "https://docs.rs/target-lexicon/"
583
+ },
584
+ {
585
+ "type": "vcs",
586
+ "url": "https://github.com/bytecodealliance/target-lexicon"
587
+ }
588
+ ]
589
+ },
590
+ {
591
+ "type": "library",
592
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
593
+ "author": "David Tolnay <dtolnay@gmail.com>",
594
+ "name": "unicode-ident",
595
+ "version": "1.0.24",
596
+ "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
597
+ "scope": "required",
598
+ "hashes": [
599
+ {
600
+ "alg": "SHA-256",
601
+ "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
602
+ }
603
+ ],
604
+ "licenses": [
605
+ {
606
+ "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
607
+ }
608
+ ],
609
+ "purl": "pkg:cargo/unicode-ident@1.0.24",
610
+ "externalReferences": [
611
+ {
612
+ "type": "documentation",
613
+ "url": "https://docs.rs/unicode-ident"
614
+ },
615
+ {
616
+ "type": "vcs",
617
+ "url": "https://github.com/dtolnay/unicode-ident"
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "type": "library",
623
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4",
624
+ "author": "David Tolnay <dtolnay@gmail.com>",
625
+ "name": "unindent",
626
+ "version": "0.2.4",
627
+ "description": "Remove a column of leading whitespace from a string",
628
+ "scope": "required",
629
+ "hashes": [
630
+ {
631
+ "alg": "SHA-256",
632
+ "content": "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
633
+ }
634
+ ],
635
+ "licenses": [
636
+ {
637
+ "expression": "MIT OR Apache-2.0"
638
+ }
639
+ ],
640
+ "purl": "pkg:cargo/unindent@0.2.4",
641
+ "externalReferences": [
642
+ {
643
+ "type": "documentation",
644
+ "url": "https://docs.rs/unindent"
645
+ },
646
+ {
647
+ "type": "vcs",
648
+ "url": "https://github.com/dtolnay/indoc"
649
+ }
650
+ ]
651
+ }
652
+ ],
653
+ "dependencies": [
654
+ {
655
+ "ref": "path+file:///D:/a/ValidKit/ValidKit/src/validkit_core#validkit-core@1.3.3-dev1",
656
+ "dependsOn": [
657
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6"
658
+ ]
659
+ },
660
+ {
661
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
662
+ },
663
+ {
664
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
665
+ },
666
+ {
667
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
668
+ },
669
+ {
670
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
671
+ "dependsOn": [
672
+ "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
673
+ ]
674
+ },
675
+ {
676
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
677
+ },
678
+ {
679
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
680
+ "dependsOn": [
681
+ "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
682
+ ]
683
+ },
684
+ {
685
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
686
+ },
687
+ {
688
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
689
+ },
690
+ {
691
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
692
+ "dependsOn": [
693
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
694
+ ]
695
+ },
696
+ {
697
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
698
+ "dependsOn": [
699
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
700
+ "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16"
701
+ ]
702
+ },
703
+ {
704
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
705
+ "dependsOn": [
706
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
707
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6"
708
+ ]
709
+ },
710
+ {
711
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
712
+ "dependsOn": [
713
+ "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
714
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
715
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
716
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
717
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118"
718
+ ]
719
+ },
720
+ {
721
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
722
+ "dependsOn": [
723
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
724
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.22.6",
725
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
726
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118"
727
+ ]
728
+ },
729
+ {
730
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.22.6",
731
+ "dependsOn": [
732
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
733
+ "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
734
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
735
+ "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
736
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
737
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
738
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.22.6",
739
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.22.6",
740
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.22.6",
741
+ "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
742
+ ]
743
+ },
744
+ {
745
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
746
+ "dependsOn": [
747
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
748
+ ]
749
+ },
750
+ {
751
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
752
+ },
753
+ {
754
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.118",
755
+ "dependsOn": [
756
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
757
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.46",
758
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
759
+ ]
760
+ },
761
+ {
762
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16"
763
+ },
764
+ {
765
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
766
+ },
767
+ {
768
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
769
+ }
770
+ ]
771
+ }