speechmarkdown-rust 0.1.9__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.
@@ -0,0 +1,5 @@
1
+ from .speechmarkdown import *
2
+
3
+ __doc__ = speechmarkdown.__doc__
4
+ if hasattr(speechmarkdown, "__all__"):
5
+ __all__ = speechmarkdown.__all__
@@ -0,0 +1,31 @@
1
+ def to_ssml(input: str, platform: str) -> str:
2
+ """Convert SpeechMarkdown input to SSML for the given platform.
3
+
4
+ Args:
5
+ input: SpeechMarkdown text
6
+ platform: One of 'amazon-alexa', 'google-assistant', 'microsoft-azure',
7
+ 'apple', 'w3c', 'samsung-bixby', 'elevenlabs', 'ibm-watson'
8
+ Returns:
9
+ SSML string
10
+ """
11
+ ...
12
+
13
+ def to_text(input: str) -> str:
14
+ """Convert SpeechMarkdown input to plain text (strips all markup).
15
+
16
+ Args:
17
+ input: SpeechMarkdown text
18
+ Returns:
19
+ Plain text string
20
+ """
21
+ ...
22
+
23
+ def parse(input: str) -> str:
24
+ """Parse SpeechMarkdown input and return AST as JSON string.
25
+
26
+ Args:
27
+ input: SpeechMarkdown text
28
+ Returns:
29
+ JSON string representing the AST
30
+ """
31
+ ...
File without changes
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: speechmarkdown-rust
3
+ Version: 0.1.9
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Summary: SpeechMarkdown parser - convert SpeechMarkdown to SSML
9
+ License-Expression: MIT
10
+ Requires-Python: >=3.8
@@ -0,0 +1,8 @@
1
+ speechmarkdown/__init__.py,sha256=IpjRFBhCT6D0Q-HNh9GrSBJ8xDqyF80ci3uTBmo6GZE,139
2
+ speechmarkdown/__init__.pyi,sha256=drOHSEbPO39-S8RQsBeedBmiLYFSOuc38u-AWvZSnsw,816
3
+ speechmarkdown/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ speechmarkdown/speechmarkdown.cp313-win_amd64.pyd,sha256=lwhHXsvFuxtKLxrOUmy5NpBmniC6cABUwJoHNeSvdzE,520704
5
+ speechmarkdown_rust-0.1.9.dist-info/METADATA,sha256=OxDkIm22TPsGC-pHvIENi27PzRVjUiEe0ymBuBltAsk,395
6
+ speechmarkdown_rust-0.1.9.dist-info/WHEEL,sha256=SOvIh6ndLyztvkrMKsamHag5pxo6YUrIipqSIMTC7-I,97
7
+ speechmarkdown_rust-0.1.9.dist-info/sboms/speechmarkdown-python.cyclonedx.json,sha256=NQcLKhxW1P4CLaR8-8N6lvDPjlRN-Ohh1ZVY8_dck3Y,34244
8
+ speechmarkdown_rust-0.1.9.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.13.3)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
@@ -0,0 +1,1107 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "version": 1,
5
+ "serialNumber": "urn:uuid:34106b38-dce2-4be3-a432-008accbbfdae",
6
+ "metadata": {
7
+ "timestamp": "2026-05-22T10:36:54.292451300Z",
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/speechmarkdown-rust/speechmarkdown-rust/bindings/python#speechmarkdown-python@0.1.9",
18
+ "name": "speechmarkdown-python",
19
+ "version": "0.1.9",
20
+ "scope": "required",
21
+ "purl": "pkg:cargo/speechmarkdown-python@0.1.9?download_url=file://.",
22
+ "components": [
23
+ {
24
+ "type": "library",
25
+ "bom-ref": "path+file:///D:/a/speechmarkdown-rust/speechmarkdown-rust/bindings/python#speechmarkdown-python@0.1.9 bin-target-0",
26
+ "name": "speechmarkdown",
27
+ "version": "0.1.9",
28
+ "purl": "pkg:cargo/speechmarkdown-python@0.1.9?download_url=file://.#src/lib.rs"
29
+ }
30
+ ]
31
+ },
32
+ "properties": [
33
+ {
34
+ "name": "cdx:rustc:sbom:target:all_targets",
35
+ "value": "true"
36
+ }
37
+ ]
38
+ },
39
+ "components": [
40
+ {
41
+ "type": "library",
42
+ "bom-ref": "path+file:///D:/a/speechmarkdown-rust/speechmarkdown-rust#0.1.9",
43
+ "author": "SpeechMarkdown Contributors",
44
+ "name": "speechmarkdown-rust",
45
+ "version": "0.1.9",
46
+ "description": "High-performance SpeechMarkdown parser with multi-language bindings",
47
+ "scope": "required",
48
+ "licenses": [
49
+ {
50
+ "expression": "MIT"
51
+ }
52
+ ],
53
+ "purl": "pkg:cargo/speechmarkdown-rust@0.1.9?download_url=file://D:\\a\\speechmarkdown-rust\\speechmarkdown-rust",
54
+ "externalReferences": [
55
+ {
56
+ "type": "vcs",
57
+ "url": "https://github.com/speechmarkdown/speechmarkdown-rust"
58
+ }
59
+ ]
60
+ },
61
+ {
62
+ "type": "library",
63
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0",
64
+ "author": "Josh Stone <cuviper@gmail.com>",
65
+ "name": "autocfg",
66
+ "version": "1.5.0",
67
+ "description": "Automatic cfg for Rust compiler features",
68
+ "scope": "excluded",
69
+ "hashes": [
70
+ {
71
+ "alg": "SHA-256",
72
+ "content": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
73
+ }
74
+ ],
75
+ "licenses": [
76
+ {
77
+ "expression": "Apache-2.0 OR MIT"
78
+ }
79
+ ],
80
+ "purl": "pkg:cargo/autocfg@1.5.0",
81
+ "externalReferences": [
82
+ {
83
+ "type": "documentation",
84
+ "url": "https://docs.rs/autocfg/"
85
+ },
86
+ {
87
+ "type": "vcs",
88
+ "url": "https://github.com/cuviper/autocfg"
89
+ }
90
+ ]
91
+ },
92
+ {
93
+ "type": "library",
94
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
95
+ "author": "Alex Crichton <alex@alexcrichton.com>",
96
+ "name": "cfg-if",
97
+ "version": "1.0.4",
98
+ "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. ",
99
+ "scope": "required",
100
+ "hashes": [
101
+ {
102
+ "alg": "SHA-256",
103
+ "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
104
+ }
105
+ ],
106
+ "licenses": [
107
+ {
108
+ "expression": "MIT OR Apache-2.0"
109
+ }
110
+ ],
111
+ "purl": "pkg:cargo/cfg-if@1.0.4",
112
+ "externalReferences": [
113
+ {
114
+ "type": "vcs",
115
+ "url": "https://github.com/rust-lang/cfg-if"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "type": "library",
121
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
122
+ "name": "heck",
123
+ "version": "0.5.0",
124
+ "description": "heck is a case conversion library.",
125
+ "scope": "required",
126
+ "hashes": [
127
+ {
128
+ "alg": "SHA-256",
129
+ "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
130
+ }
131
+ ],
132
+ "licenses": [
133
+ {
134
+ "expression": "MIT OR Apache-2.0"
135
+ }
136
+ ],
137
+ "purl": "pkg:cargo/heck@0.5.0",
138
+ "externalReferences": [
139
+ {
140
+ "type": "vcs",
141
+ "url": "https://github.com/withoutboats/heck"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "type": "library",
147
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
148
+ "author": "David Tolnay <dtolnay@gmail.com>",
149
+ "name": "indoc",
150
+ "version": "2.0.7",
151
+ "description": "Indented document literals",
152
+ "scope": "required",
153
+ "hashes": [
154
+ {
155
+ "alg": "SHA-256",
156
+ "content": "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
157
+ }
158
+ ],
159
+ "licenses": [
160
+ {
161
+ "expression": "MIT OR Apache-2.0"
162
+ }
163
+ ],
164
+ "purl": "pkg:cargo/indoc@2.0.7",
165
+ "externalReferences": [
166
+ {
167
+ "type": "documentation",
168
+ "url": "https://docs.rs/indoc"
169
+ },
170
+ {
171
+ "type": "vcs",
172
+ "url": "https://github.com/dtolnay/indoc"
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "type": "library",
178
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
179
+ "author": "David Tolnay <dtolnay@gmail.com>",
180
+ "name": "itoa",
181
+ "version": "1.0.18",
182
+ "description": "Fast integer primitive to string conversion",
183
+ "scope": "required",
184
+ "hashes": [
185
+ {
186
+ "alg": "SHA-256",
187
+ "content": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
188
+ }
189
+ ],
190
+ "licenses": [
191
+ {
192
+ "expression": "MIT OR Apache-2.0"
193
+ }
194
+ ],
195
+ "purl": "pkg:cargo/itoa@1.0.18",
196
+ "externalReferences": [
197
+ {
198
+ "type": "documentation",
199
+ "url": "https://docs.rs/itoa"
200
+ },
201
+ {
202
+ "type": "vcs",
203
+ "url": "https://github.com/dtolnay/itoa"
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "type": "library",
209
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
210
+ "author": "The Rust Project Developers",
211
+ "name": "libc",
212
+ "version": "0.2.186",
213
+ "description": "Raw FFI bindings to platform libraries like libc.",
214
+ "scope": "required",
215
+ "hashes": [
216
+ {
217
+ "alg": "SHA-256",
218
+ "content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
219
+ }
220
+ ],
221
+ "licenses": [
222
+ {
223
+ "expression": "MIT OR Apache-2.0"
224
+ }
225
+ ],
226
+ "purl": "pkg:cargo/libc@0.2.186",
227
+ "externalReferences": [
228
+ {
229
+ "type": "vcs",
230
+ "url": "https://github.com/rust-lang/libc"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "type": "library",
236
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0",
237
+ "author": "Andrew Gallant <jamslam@gmail.com>, bluss",
238
+ "name": "memchr",
239
+ "version": "2.8.0",
240
+ "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ",
241
+ "scope": "required",
242
+ "hashes": [
243
+ {
244
+ "alg": "SHA-256",
245
+ "content": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
246
+ }
247
+ ],
248
+ "licenses": [
249
+ {
250
+ "expression": "Unlicense OR MIT"
251
+ }
252
+ ],
253
+ "purl": "pkg:cargo/memchr@2.8.0",
254
+ "externalReferences": [
255
+ {
256
+ "type": "documentation",
257
+ "url": "https://docs.rs/memchr/"
258
+ },
259
+ {
260
+ "type": "website",
261
+ "url": "https://github.com/BurntSushi/memchr"
262
+ },
263
+ {
264
+ "type": "vcs",
265
+ "url": "https://github.com/BurntSushi/memchr"
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "type": "library",
271
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
272
+ "author": "Gilad Naaman <gilad.naaman@gmail.com>",
273
+ "name": "memoffset",
274
+ "version": "0.9.1",
275
+ "description": "offset_of functionality for Rust structs.",
276
+ "scope": "required",
277
+ "hashes": [
278
+ {
279
+ "alg": "SHA-256",
280
+ "content": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
281
+ }
282
+ ],
283
+ "licenses": [
284
+ {
285
+ "expression": "MIT"
286
+ }
287
+ ],
288
+ "purl": "pkg:cargo/memoffset@0.9.1",
289
+ "externalReferences": [
290
+ {
291
+ "type": "vcs",
292
+ "url": "https://github.com/Gilnaa/memoffset"
293
+ }
294
+ ]
295
+ },
296
+ {
297
+ "type": "library",
298
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
299
+ "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
300
+ "name": "once_cell",
301
+ "version": "1.21.4",
302
+ "description": "Single assignment cells and lazy values.",
303
+ "scope": "required",
304
+ "hashes": [
305
+ {
306
+ "alg": "SHA-256",
307
+ "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
308
+ }
309
+ ],
310
+ "licenses": [
311
+ {
312
+ "expression": "MIT OR Apache-2.0"
313
+ }
314
+ ],
315
+ "purl": "pkg:cargo/once_cell@1.21.4",
316
+ "externalReferences": [
317
+ {
318
+ "type": "documentation",
319
+ "url": "https://docs.rs/once_cell"
320
+ },
321
+ {
322
+ "type": "vcs",
323
+ "url": "https://github.com/matklad/once_cell"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "type": "library",
329
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
330
+ "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
331
+ "name": "proc-macro2",
332
+ "version": "1.0.106",
333
+ "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
334
+ "scope": "required",
335
+ "hashes": [
336
+ {
337
+ "alg": "SHA-256",
338
+ "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
339
+ }
340
+ ],
341
+ "licenses": [
342
+ {
343
+ "expression": "MIT OR Apache-2.0"
344
+ }
345
+ ],
346
+ "purl": "pkg:cargo/proc-macro2@1.0.106",
347
+ "externalReferences": [
348
+ {
349
+ "type": "documentation",
350
+ "url": "https://docs.rs/proc-macro2"
351
+ },
352
+ {
353
+ "type": "vcs",
354
+ "url": "https://github.com/dtolnay/proc-macro2"
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "type": "library",
360
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.24.2",
361
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
362
+ "name": "pyo3-build-config",
363
+ "version": "0.24.2",
364
+ "description": "Build configuration for the PyO3 ecosystem",
365
+ "scope": "required",
366
+ "hashes": [
367
+ {
368
+ "alg": "SHA-256",
369
+ "content": "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
370
+ }
371
+ ],
372
+ "licenses": [
373
+ {
374
+ "expression": "MIT OR Apache-2.0"
375
+ }
376
+ ],
377
+ "purl": "pkg:cargo/pyo3-build-config@0.24.2",
378
+ "externalReferences": [
379
+ {
380
+ "type": "website",
381
+ "url": "https://github.com/pyo3/pyo3"
382
+ },
383
+ {
384
+ "type": "vcs",
385
+ "url": "https://github.com/pyo3/pyo3"
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "type": "library",
391
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.24.2",
392
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
393
+ "name": "pyo3-ffi",
394
+ "version": "0.24.2",
395
+ "description": "Python-API bindings for the PyO3 ecosystem",
396
+ "scope": "required",
397
+ "hashes": [
398
+ {
399
+ "alg": "SHA-256",
400
+ "content": "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
401
+ }
402
+ ],
403
+ "licenses": [
404
+ {
405
+ "expression": "MIT OR Apache-2.0"
406
+ }
407
+ ],
408
+ "purl": "pkg:cargo/pyo3-ffi@0.24.2",
409
+ "externalReferences": [
410
+ {
411
+ "type": "website",
412
+ "url": "https://github.com/pyo3/pyo3"
413
+ },
414
+ {
415
+ "type": "other",
416
+ "url": "python"
417
+ },
418
+ {
419
+ "type": "vcs",
420
+ "url": "https://github.com/pyo3/pyo3"
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "type": "library",
426
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.24.2",
427
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
428
+ "name": "pyo3-macros-backend",
429
+ "version": "0.24.2",
430
+ "description": "Code generation for PyO3 package",
431
+ "scope": "required",
432
+ "hashes": [
433
+ {
434
+ "alg": "SHA-256",
435
+ "content": "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
436
+ }
437
+ ],
438
+ "licenses": [
439
+ {
440
+ "expression": "MIT OR Apache-2.0"
441
+ }
442
+ ],
443
+ "purl": "pkg:cargo/pyo3-macros-backend@0.24.2",
444
+ "externalReferences": [
445
+ {
446
+ "type": "website",
447
+ "url": "https://github.com/pyo3/pyo3"
448
+ },
449
+ {
450
+ "type": "vcs",
451
+ "url": "https://github.com/pyo3/pyo3"
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "type": "library",
457
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.24.2",
458
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
459
+ "name": "pyo3-macros",
460
+ "version": "0.24.2",
461
+ "description": "Proc macros for PyO3 package",
462
+ "scope": "required",
463
+ "hashes": [
464
+ {
465
+ "alg": "SHA-256",
466
+ "content": "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
467
+ }
468
+ ],
469
+ "licenses": [
470
+ {
471
+ "expression": "MIT OR Apache-2.0"
472
+ }
473
+ ],
474
+ "purl": "pkg:cargo/pyo3-macros@0.24.2",
475
+ "externalReferences": [
476
+ {
477
+ "type": "website",
478
+ "url": "https://github.com/pyo3/pyo3"
479
+ },
480
+ {
481
+ "type": "vcs",
482
+ "url": "https://github.com/pyo3/pyo3"
483
+ }
484
+ ]
485
+ },
486
+ {
487
+ "type": "library",
488
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.24.2",
489
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
490
+ "name": "pyo3",
491
+ "version": "0.24.2",
492
+ "description": "Bindings to Python interpreter",
493
+ "scope": "required",
494
+ "hashes": [
495
+ {
496
+ "alg": "SHA-256",
497
+ "content": "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
498
+ }
499
+ ],
500
+ "licenses": [
501
+ {
502
+ "expression": "MIT OR Apache-2.0"
503
+ }
504
+ ],
505
+ "purl": "pkg:cargo/pyo3@0.24.2",
506
+ "externalReferences": [
507
+ {
508
+ "type": "documentation",
509
+ "url": "https://docs.rs/crate/pyo3/"
510
+ },
511
+ {
512
+ "type": "website",
513
+ "url": "https://github.com/pyo3/pyo3"
514
+ },
515
+ {
516
+ "type": "vcs",
517
+ "url": "https://github.com/pyo3/pyo3"
518
+ }
519
+ ]
520
+ },
521
+ {
522
+ "type": "library",
523
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
524
+ "author": "David Tolnay <dtolnay@gmail.com>",
525
+ "name": "quote",
526
+ "version": "1.0.45",
527
+ "description": "Quasi-quoting macro quote!(...)",
528
+ "scope": "required",
529
+ "hashes": [
530
+ {
531
+ "alg": "SHA-256",
532
+ "content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
533
+ }
534
+ ],
535
+ "licenses": [
536
+ {
537
+ "expression": "MIT OR Apache-2.0"
538
+ }
539
+ ],
540
+ "purl": "pkg:cargo/quote@1.0.45",
541
+ "externalReferences": [
542
+ {
543
+ "type": "documentation",
544
+ "url": "https://docs.rs/quote/"
545
+ },
546
+ {
547
+ "type": "vcs",
548
+ "url": "https://github.com/dtolnay/quote"
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "type": "library",
554
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
555
+ "author": "David Tolnay <dtolnay@gmail.com>",
556
+ "name": "rustversion",
557
+ "version": "1.0.22",
558
+ "description": "Conditional compilation according to rustc compiler version",
559
+ "scope": "excluded",
560
+ "hashes": [
561
+ {
562
+ "alg": "SHA-256",
563
+ "content": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
564
+ }
565
+ ],
566
+ "licenses": [
567
+ {
568
+ "expression": "MIT OR Apache-2.0"
569
+ }
570
+ ],
571
+ "purl": "pkg:cargo/rustversion@1.0.22",
572
+ "externalReferences": [
573
+ {
574
+ "type": "documentation",
575
+ "url": "https://docs.rs/rustversion"
576
+ },
577
+ {
578
+ "type": "vcs",
579
+ "url": "https://github.com/dtolnay/rustversion"
580
+ }
581
+ ]
582
+ },
583
+ {
584
+ "type": "library",
585
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
586
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
587
+ "name": "serde",
588
+ "version": "1.0.228",
589
+ "description": "A generic serialization/deserialization framework",
590
+ "scope": "required",
591
+ "hashes": [
592
+ {
593
+ "alg": "SHA-256",
594
+ "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
595
+ }
596
+ ],
597
+ "licenses": [
598
+ {
599
+ "expression": "MIT OR Apache-2.0"
600
+ }
601
+ ],
602
+ "purl": "pkg:cargo/serde@1.0.228",
603
+ "externalReferences": [
604
+ {
605
+ "type": "documentation",
606
+ "url": "https://docs.rs/serde"
607
+ },
608
+ {
609
+ "type": "website",
610
+ "url": "https://serde.rs"
611
+ },
612
+ {
613
+ "type": "vcs",
614
+ "url": "https://github.com/serde-rs/serde"
615
+ }
616
+ ]
617
+ },
618
+ {
619
+ "type": "library",
620
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
621
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
622
+ "name": "serde_core",
623
+ "version": "1.0.228",
624
+ "description": "Serde traits only, with no support for derive -- use the `serde` crate instead",
625
+ "scope": "required",
626
+ "hashes": [
627
+ {
628
+ "alg": "SHA-256",
629
+ "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
630
+ }
631
+ ],
632
+ "licenses": [
633
+ {
634
+ "expression": "MIT OR Apache-2.0"
635
+ }
636
+ ],
637
+ "purl": "pkg:cargo/serde_core@1.0.228",
638
+ "externalReferences": [
639
+ {
640
+ "type": "documentation",
641
+ "url": "https://docs.rs/serde_core"
642
+ },
643
+ {
644
+ "type": "website",
645
+ "url": "https://serde.rs"
646
+ },
647
+ {
648
+ "type": "vcs",
649
+ "url": "https://github.com/serde-rs/serde"
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "type": "library",
655
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
656
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
657
+ "name": "serde_derive",
658
+ "version": "1.0.228",
659
+ "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]",
660
+ "scope": "required",
661
+ "hashes": [
662
+ {
663
+ "alg": "SHA-256",
664
+ "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
665
+ }
666
+ ],
667
+ "licenses": [
668
+ {
669
+ "expression": "MIT OR Apache-2.0"
670
+ }
671
+ ],
672
+ "purl": "pkg:cargo/serde_derive@1.0.228",
673
+ "externalReferences": [
674
+ {
675
+ "type": "documentation",
676
+ "url": "https://serde.rs/derive.html"
677
+ },
678
+ {
679
+ "type": "website",
680
+ "url": "https://serde.rs"
681
+ },
682
+ {
683
+ "type": "vcs",
684
+ "url": "https://github.com/serde-rs/serde"
685
+ }
686
+ ]
687
+ },
688
+ {
689
+ "type": "library",
690
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
691
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
692
+ "name": "serde_json",
693
+ "version": "1.0.150",
694
+ "description": "A JSON serialization file format",
695
+ "scope": "required",
696
+ "hashes": [
697
+ {
698
+ "alg": "SHA-256",
699
+ "content": "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
700
+ }
701
+ ],
702
+ "licenses": [
703
+ {
704
+ "expression": "MIT OR Apache-2.0"
705
+ }
706
+ ],
707
+ "purl": "pkg:cargo/serde_json@1.0.150",
708
+ "externalReferences": [
709
+ {
710
+ "type": "documentation",
711
+ "url": "https://docs.rs/serde_json"
712
+ },
713
+ {
714
+ "type": "vcs",
715
+ "url": "https://github.com/serde-rs/json"
716
+ }
717
+ ]
718
+ },
719
+ {
720
+ "type": "library",
721
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
722
+ "author": "David Tolnay <dtolnay@gmail.com>",
723
+ "name": "syn",
724
+ "version": "2.0.117",
725
+ "description": "Parser for Rust source code",
726
+ "scope": "required",
727
+ "hashes": [
728
+ {
729
+ "alg": "SHA-256",
730
+ "content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
731
+ }
732
+ ],
733
+ "licenses": [
734
+ {
735
+ "expression": "MIT OR Apache-2.0"
736
+ }
737
+ ],
738
+ "purl": "pkg:cargo/syn@2.0.117",
739
+ "externalReferences": [
740
+ {
741
+ "type": "documentation",
742
+ "url": "https://docs.rs/syn"
743
+ },
744
+ {
745
+ "type": "vcs",
746
+ "url": "https://github.com/dtolnay/syn"
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "type": "library",
752
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
753
+ "author": "Dan Gohman <sunfish@mozilla.com>",
754
+ "name": "target-lexicon",
755
+ "version": "0.13.5",
756
+ "description": "LLVM target triple types",
757
+ "scope": "required",
758
+ "hashes": [
759
+ {
760
+ "alg": "SHA-256",
761
+ "content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
762
+ }
763
+ ],
764
+ "licenses": [
765
+ {
766
+ "expression": "Apache-2.0 WITH LLVM-exception"
767
+ }
768
+ ],
769
+ "purl": "pkg:cargo/target-lexicon@0.13.5",
770
+ "externalReferences": [
771
+ {
772
+ "type": "documentation",
773
+ "url": "https://docs.rs/target-lexicon/"
774
+ },
775
+ {
776
+ "type": "vcs",
777
+ "url": "https://github.com/bytecodealliance/target-lexicon"
778
+ }
779
+ ]
780
+ },
781
+ {
782
+ "type": "library",
783
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69",
784
+ "author": "David Tolnay <dtolnay@gmail.com>",
785
+ "name": "thiserror-impl",
786
+ "version": "1.0.69",
787
+ "description": "Implementation detail of the `thiserror` crate",
788
+ "scope": "required",
789
+ "hashes": [
790
+ {
791
+ "alg": "SHA-256",
792
+ "content": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
793
+ }
794
+ ],
795
+ "licenses": [
796
+ {
797
+ "expression": "MIT OR Apache-2.0"
798
+ }
799
+ ],
800
+ "purl": "pkg:cargo/thiserror-impl@1.0.69",
801
+ "externalReferences": [
802
+ {
803
+ "type": "vcs",
804
+ "url": "https://github.com/dtolnay/thiserror"
805
+ }
806
+ ]
807
+ },
808
+ {
809
+ "type": "library",
810
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69",
811
+ "author": "David Tolnay <dtolnay@gmail.com>",
812
+ "name": "thiserror",
813
+ "version": "1.0.69",
814
+ "description": "derive(Error)",
815
+ "scope": "required",
816
+ "hashes": [
817
+ {
818
+ "alg": "SHA-256",
819
+ "content": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
820
+ }
821
+ ],
822
+ "licenses": [
823
+ {
824
+ "expression": "MIT OR Apache-2.0"
825
+ }
826
+ ],
827
+ "purl": "pkg:cargo/thiserror@1.0.69",
828
+ "externalReferences": [
829
+ {
830
+ "type": "documentation",
831
+ "url": "https://docs.rs/thiserror"
832
+ },
833
+ {
834
+ "type": "vcs",
835
+ "url": "https://github.com/dtolnay/thiserror"
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "type": "library",
841
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
842
+ "author": "David Tolnay <dtolnay@gmail.com>",
843
+ "name": "unicode-ident",
844
+ "version": "1.0.24",
845
+ "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
846
+ "scope": "required",
847
+ "hashes": [
848
+ {
849
+ "alg": "SHA-256",
850
+ "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
851
+ }
852
+ ],
853
+ "licenses": [
854
+ {
855
+ "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
856
+ }
857
+ ],
858
+ "purl": "pkg:cargo/unicode-ident@1.0.24",
859
+ "externalReferences": [
860
+ {
861
+ "type": "documentation",
862
+ "url": "https://docs.rs/unicode-ident"
863
+ },
864
+ {
865
+ "type": "vcs",
866
+ "url": "https://github.com/dtolnay/unicode-ident"
867
+ }
868
+ ]
869
+ },
870
+ {
871
+ "type": "library",
872
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4",
873
+ "author": "David Tolnay <dtolnay@gmail.com>",
874
+ "name": "unindent",
875
+ "version": "0.2.4",
876
+ "description": "Remove a column of leading whitespace from a string",
877
+ "scope": "required",
878
+ "hashes": [
879
+ {
880
+ "alg": "SHA-256",
881
+ "content": "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
882
+ }
883
+ ],
884
+ "licenses": [
885
+ {
886
+ "expression": "MIT OR Apache-2.0"
887
+ }
888
+ ],
889
+ "purl": "pkg:cargo/unindent@0.2.4",
890
+ "externalReferences": [
891
+ {
892
+ "type": "documentation",
893
+ "url": "https://docs.rs/unindent"
894
+ },
895
+ {
896
+ "type": "vcs",
897
+ "url": "https://github.com/dtolnay/indoc"
898
+ }
899
+ ]
900
+ },
901
+ {
902
+ "type": "library",
903
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21",
904
+ "author": "David Tolnay <dtolnay@gmail.com>",
905
+ "name": "zmij",
906
+ "version": "1.0.21",
907
+ "description": "A double-to-string conversion algorithm based on Schubfach and yy",
908
+ "scope": "required",
909
+ "hashes": [
910
+ {
911
+ "alg": "SHA-256",
912
+ "content": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
913
+ }
914
+ ],
915
+ "licenses": [
916
+ {
917
+ "expression": "MIT"
918
+ }
919
+ ],
920
+ "purl": "pkg:cargo/zmij@1.0.21",
921
+ "externalReferences": [
922
+ {
923
+ "type": "documentation",
924
+ "url": "https://docs.rs/zmij"
925
+ },
926
+ {
927
+ "type": "vcs",
928
+ "url": "https://github.com/dtolnay/zmij"
929
+ }
930
+ ]
931
+ }
932
+ ],
933
+ "dependencies": [
934
+ {
935
+ "ref": "path+file:///D:/a/speechmarkdown-rust/speechmarkdown-rust#0.1.9",
936
+ "dependsOn": [
937
+ "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
938
+ "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
939
+ "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69"
940
+ ]
941
+ },
942
+ {
943
+ "ref": "path+file:///D:/a/speechmarkdown-rust/speechmarkdown-rust/bindings/python#speechmarkdown-python@0.1.9",
944
+ "dependsOn": [
945
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.24.2",
946
+ "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
947
+ "path+file:///D:/a/speechmarkdown-rust/speechmarkdown-rust#0.1.9"
948
+ ]
949
+ },
950
+ {
951
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0"
952
+ },
953
+ {
954
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
955
+ },
956
+ {
957
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
958
+ },
959
+ {
960
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
961
+ "dependsOn": [
962
+ "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
963
+ ]
964
+ },
965
+ {
966
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
967
+ },
968
+ {
969
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
970
+ },
971
+ {
972
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0"
973
+ },
974
+ {
975
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
976
+ "dependsOn": [
977
+ "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0"
978
+ ]
979
+ },
980
+ {
981
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
982
+ },
983
+ {
984
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
985
+ "dependsOn": [
986
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
987
+ ]
988
+ },
989
+ {
990
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.24.2",
991
+ "dependsOn": [
992
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
993
+ "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
994
+ ]
995
+ },
996
+ {
997
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.24.2",
998
+ "dependsOn": [
999
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1000
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.24.2"
1001
+ ]
1002
+ },
1003
+ {
1004
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.24.2",
1005
+ "dependsOn": [
1006
+ "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
1007
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1008
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.24.2",
1009
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1010
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1011
+ ]
1012
+ },
1013
+ {
1014
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.24.2",
1015
+ "dependsOn": [
1016
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1017
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.24.2",
1018
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1019
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1020
+ ]
1021
+ },
1022
+ {
1023
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.24.2",
1024
+ "dependsOn": [
1025
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1026
+ "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7",
1027
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1028
+ "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1",
1029
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
1030
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.24.2",
1031
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.24.2",
1032
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.24.2",
1033
+ "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
1034
+ ]
1035
+ },
1036
+ {
1037
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1038
+ "dependsOn": [
1039
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
1040
+ ]
1041
+ },
1042
+ {
1043
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
1044
+ },
1045
+ {
1046
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
1047
+ "dependsOn": [
1048
+ "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
1049
+ "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228"
1050
+ ]
1051
+ },
1052
+ {
1053
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228"
1054
+ },
1055
+ {
1056
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
1057
+ "dependsOn": [
1058
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1059
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1060
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1061
+ ]
1062
+ },
1063
+ {
1064
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
1065
+ "dependsOn": [
1066
+ "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
1067
+ "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0",
1068
+ "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
1069
+ "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21"
1070
+ ]
1071
+ },
1072
+ {
1073
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
1074
+ "dependsOn": [
1075
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1076
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1077
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1078
+ ]
1079
+ },
1080
+ {
1081
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
1082
+ },
1083
+ {
1084
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69",
1085
+ "dependsOn": [
1086
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1087
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1088
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1089
+ ]
1090
+ },
1091
+ {
1092
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69",
1093
+ "dependsOn": [
1094
+ "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69"
1095
+ ]
1096
+ },
1097
+ {
1098
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1099
+ },
1100
+ {
1101
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unindent@0.2.4"
1102
+ },
1103
+ {
1104
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21"
1105
+ }
1106
+ ]
1107
+ }