tmark-core 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.
- tmark_core-0.1.0/Cargo.lock +1225 -0
- tmark_core-0.1.0/Cargo.toml +30 -0
- tmark_core-0.1.0/PKG-INFO +22 -0
- tmark_core-0.1.0/README.md +9 -0
- tmark_core-0.1.0/crates/tmark/Cargo.toml +31 -0
- tmark_core-0.1.0/crates/tmark/examples/fixes.rs +25 -0
- tmark_core-0.1.0/crates/tmark/src/config.rs +215 -0
- tmark_core-0.1.0/crates/tmark/src/json.rs +105 -0
- tmark_core-0.1.0/crates/tmark/src/lib.rs +153 -0
- tmark_core-0.1.0/crates/tmark/tests/conformance.rs +252 -0
- tmark_core-0.1.0/crates/tmark/tests/fixes.rs +46 -0
- tmark_core-0.1.0/crates/tmark-fmt/Cargo.toml +22 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/attrs.rs +73 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/block.rs +991 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/edit.rs +128 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/escape.rs +386 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/inline.rs +589 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/lib.rs +42 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/mkdocs.rs +617 -0
- tmark_core-0.1.0/crates/tmark-fmt/src/out.rs +178 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/common/mod.rs +128 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/data/yaml-tables.md +346 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/edit.proptest-regressions +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/edit.rs +228 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/mkdocs.rs +158 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/roundtrip.rs +122 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__admonition-collapsed.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__attributes-colon.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__attributes-heading.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__attributes-image.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__attributes-no-host.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__attributes-value-quote.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__autolink-literal-escapes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__blockquote-attributes.snap +6 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__caption-table.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-admonition.snap +6 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-div-markdown.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-figure-prose.snap +18 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-figure-subfigures.snap +21 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-figure.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-multicolumn.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-slash-deprecated.snap +21 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-tabs.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__container-unknown.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__counter-item.snap +12 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__critic-comment.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__critic-delete.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__critic-highlight.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__critic-insert.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__critic-substitute.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__definition-list.snap +12 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-compat-unsupported.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-include-missing.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-label-duplicate.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-prefix.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-ref-ambiguous.snap +12 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-ref-unnumbered.snap +16 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-ref-unresolved.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-align.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-column-unknown.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-columns.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-placement.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-row-width.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-shape.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-span.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-unknown-key.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-width-sum.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-width.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__diag-table-yaml.snap +8 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__directive-foreign.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__divider.snap +15 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__escape-typst-structural.snap +17 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-attributes.snap +16 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-image.snap +17 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-include-snippet.snap +6 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-listing.snap +12 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table-config.snap +18 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table-named.snap +15 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table-scalars.snap +14 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table-settings.snap +19 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table-spans.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__fence-yaml-table.snap +14 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__frontmatter-deprecated.snap +15 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__frontmatter.snap +14 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__glossary-flat.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__glossary-structured.snap +18 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__heading-implicit-id-unicode.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__heading-implicit-id.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__heading-unnumbered.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__html-raw.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__include-snippet-dashes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__include-snippet-escaped.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__include.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-emoji.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-icon.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-insert-off.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-insert.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-keys-prose.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-quotes-boundaries.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-quotes-dashes.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-smallcaps.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-smart-symbols-escaped.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__inline-smart-symbols.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lead-run-in.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lead.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__link-destination-escapes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__link-title-backslash.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lint-prose.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lint-structure.snap +15 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lists-adjacent.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__lists.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__math.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__moustache.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__notes-and-abbr.snap +10 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__progressbar-escaped.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__progressbar.snap +6 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-bare.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-bracketed.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-citation-deprecated.snap +15 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-citation-flags.snap +13 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-citation-narrative.snap +14 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-doi.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-glossary-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__reference-key-digit-initial.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-aside-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-aside.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-code.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-index-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-index-suffix-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-index-then-bracket.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-index.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-inline-sugar.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-raw-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__role-raw.snap +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__span-anchor-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__span.snap +5 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__spellings_and_fallbacks.snap +62 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__table-cell-linebreak.snap +11 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__table-header-markup.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/snapshots/mkdocs__mkdocs__table-pipe-in-code.snap +7 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/tables.proptest-regressions +9 -0
- tmark_core-0.1.0/crates/tmark-fmt/tests/tables.rs +348 -0
- tmark_core-0.1.0/crates/tmark-ir/Cargo.toml +17 -0
- tmark_core-0.1.0/crates/tmark-ir/examples/registries.rs +45 -0
- tmark_core-0.1.0/crates/tmark-ir/examples/schema.rs +33 -0
- tmark_core-0.1.0/crates/tmark-ir/schema/README.md +6 -0
- tmark_core-0.1.0/crates/tmark-ir/schema/diagnostic.json +413 -0
- tmark_core-0.1.0/crates/tmark-ir/schema/frontmatter.json +331 -0
- tmark_core-0.1.0/crates/tmark-ir/schema/ir.json +3168 -0
- tmark_core-0.1.0/crates/tmark-ir/src/attrs.rs +108 -0
- tmark_core-0.1.0/crates/tmark-ir/src/critic.rs +135 -0
- tmark_core-0.1.0/crates/tmark-ir/src/diagnostic.rs +570 -0
- tmark_core-0.1.0/crates/tmark-ir/src/emoji/mod.rs +61 -0
- tmark_core-0.1.0/crates/tmark-ir/src/emoji/table.rs +2062 -0
- tmark_core-0.1.0/crates/tmark-ir/src/frontmatter.rs +755 -0
- tmark_core-0.1.0/crates/tmark-ir/src/lib.rs +83 -0
- tmark_core-0.1.0/crates/tmark-ir/src/node.rs +1179 -0
- tmark_core-0.1.0/crates/tmark-ir/src/registry.rs +1224 -0
- tmark_core-0.1.0/crates/tmark-ir/src/span.rs +468 -0
- tmark_core-0.1.0/crates/tmark-ir/src/sugar.rs +297 -0
- tmark_core-0.1.0/crates/tmark-ir/src/table.rs +414 -0
- tmark_core-0.1.0/crates/tmark-ir/src/walk.rs +228 -0
- tmark_core-0.1.0/crates/tmark-ir/src/yaml_edit.rs +208 -0
- tmark_core-0.1.0/crates/tmark-lint/Cargo.toml +18 -0
- tmark_core-0.1.0/crates/tmark-lint/src/lib.rs +86 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/caption_id.rs +42 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/directive_foreign.rs +33 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/feature_off.rs +82 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/hardcoded_number.rs +51 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/heading_skip.rs +32 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/icon_web_only.rs +32 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/lead_promotion.rs +36 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/mod.rs +73 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/position_word.rs +40 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/table_placement.rs +33 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/table_width.rs +73 -0
- tmark_core-0.1.0/crates/tmark-lint/src/rules/table_width_sum.rs +44 -0
- tmark_core-0.1.0/crates/tmark-lint/tests/rules.rs +157 -0
- tmark_core-0.1.0/crates/tmark-markdown/Cargo.toml +51 -0
- tmark_core-0.1.0/crates/tmark-markdown/LICENSE-markdown-rs +22 -0
- tmark_core-0.1.0/crates/tmark-markdown/VENDORED.md +31 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/configuration.rs +1600 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/attention.rs +531 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/autolink.rs +358 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/blank_line.rs +88 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/block_quote.rs +135 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/character_escape.rs +85 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/character_reference.rs +204 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/code_indented.rs +192 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/content.rs +189 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/definition.rs +404 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/document.rs +628 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/flow.rs +343 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/frontmatter.rs +315 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/gfm_autolink_literal.rs +849 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/gfm_footnote_definition.rs +423 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/gfm_label_start_footnote.rs +92 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/gfm_table.rs +1038 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/gfm_task_list_item_check.rs +157 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/hard_break_escape.rs +85 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/heading_atx.rs +280 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/heading_setext.rs +281 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/html_flow.rs +873 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/html_text.rs +659 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/label_end.rs +871 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/label_start_image.rs +119 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/label_start_link.rs +64 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/list_item.rs +474 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mdx_esm.rs +238 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mdx_expression_flow.rs +179 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mdx_expression_text.rs +64 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mdx_jsx_flow.rs +168 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mdx_jsx_text.rs +76 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/mod.rs +209 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/paragraph.rs +115 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_bom.rs +67 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_data.rs +110 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_destination.rs +251 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_label.rs +220 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_mdx_expression.rs +263 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_mdx_jsx.rs +1144 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_non_lazy_continuation.rs +49 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_space_or_tab.rs +153 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_space_or_tab_eol.rs +208 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_title.rs +196 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_tmark_body.rs +82 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/partial_whitespace.rs +213 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/raw_flow.rs +719 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/raw_text.rs +271 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/string.rs +81 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/text.rs +346 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/thematic_break.rs +155 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_admonition.rs +165 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_argument.rs +111 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_brace.rs +223 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_container.rs +307 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_define.rs +117 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_definition.rs +82 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_math_compat.rs +90 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/construct/tmark_reference.rs +266 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/event.rs +3669 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/lib.rs +167 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/mdast.rs +2670 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/message.rs +46 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/parser.rs +79 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/resolve.rs +81 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/state.rs +1095 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/subtokenize.rs +275 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/to_html.rs +1751 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/to_mdast.rs +2142 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/tokenizer.rs +839 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/unist.rs +103 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/char.rs +251 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/character_reference.rs +217 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/constant.rs +2756 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/edit_map.rs +148 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/encode.rs +55 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/gfm_tagfilter.rs +78 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/identifier.rs +17 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/infer.rs +192 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/line_ending.rs +130 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/location.rs +210 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/mdx.rs +130 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/mdx_collect.rs +53 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/mod.rs +20 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/normalize_identifier.rs +78 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/sanitize_uri.rs +148 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/skip.rs +80 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/slice.rs +125 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/tmark.rs +97 -0
- tmark_core-0.1.0/crates/tmark-markdown/src/util/unicode.rs +9388 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/attention.rs +880 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/autolink.rs +325 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/block_quote.rs +240 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/character_escape.rs +122 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/character_reference.rs +233 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/code_fenced.rs +342 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/code_indented.rs +223 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/code_text.rs +239 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/commonmark.rs +9166 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/definition.rs +526 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/frontmatter.rs +167 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/fuzz.rs +133 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_autolink_literal.rs +2828 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_footnote.rs +1665 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_strikethrough.rs +437 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_table.rs +1968 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_tagfilter.rs +171 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/gfm_task_list_item.rs +368 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/hard_break_escape.rs +90 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/hard_break_trailing.rs +156 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/heading_atx.rs +244 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/heading_setext.rs +317 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/html_flow.rs +1141 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/html_text.rs +481 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/image.rs +356 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/link_reference.rs +497 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/link_resource.rs +537 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/list.rs +708 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/math_flow.rs +272 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/math_text.rs +236 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_bom.rs +13 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_dangerous_html.rs +34 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_dangerous_protocol.rs +228 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_default_line_ending.rs +63 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_line_ending.rs +190 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_soft_break.rs +17 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_tabs.rs +292 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_url.rs +147 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/misc_zero.rs +42 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/text.rs +23 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/thematic_break.rs +203 -0
- tmark_core-0.1.0/crates/tmark-markdown/tests/tmark.rs +365 -0
- tmark_core-0.1.0/crates/tmark-py/Cargo.toml +29 -0
- tmark_core-0.1.0/crates/tmark-py/README.md +9 -0
- tmark_core-0.1.0/crates/tmark-py/scripts/gen_ir_models.py +840 -0
- tmark_core-0.1.0/crates/tmark-py/scripts/gen_stubs.py +97 -0
- tmark_core-0.1.0/crates/tmark-py/src/lib.rs +821 -0
- tmark_core-0.1.0/crates/tmark-py/tests/conftest.py +37 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_gen_ir_models.py +147 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_lower_web.py +83 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_parse.py +112 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_resolve.py +183 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_schema.py +105 -0
- tmark_core-0.1.0/crates/tmark-py/tests/test_write.py +141 -0
- tmark_core-0.1.0/crates/tmark-registry/Cargo.toml +27 -0
- tmark_core-0.1.0/crates/tmark-registry/src/bib.rs +140 -0
- tmark_core-0.1.0/crates/tmark-registry/src/collect.rs +614 -0
- tmark_core-0.1.0/crates/tmark-registry/src/counters.rs +272 -0
- tmark_core-0.1.0/crates/tmark-registry/src/inventory.rs +81 -0
- tmark_core-0.1.0/crates/tmark-registry/src/lib.rs +270 -0
- tmark_core-0.1.0/crates/tmark-registry/src/loader.rs +101 -0
- tmark_core-0.1.0/crates/tmark-registry/src/refs.rs +214 -0
- tmark_core-0.1.0/crates/tmark-registry/src/view.rs +181 -0
- tmark_core-0.1.0/crates/tmark-registry/tests/book.rs +289 -0
- tmark_core-0.1.0/crates/tmark-registry/tests/resolve.rs +157 -0
- tmark_core-0.1.0/crates/tmark-registry/tests/subfigures.rs +170 -0
- tmark_core-0.1.0/crates/tmark-syntax/Cargo.toml +20 -0
- tmark_core-0.1.0/crates/tmark-syntax/examples/bench.rs +36 -0
- tmark_core-0.1.0/crates/tmark-syntax/examples/dump.rs +38 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lib.rs +35 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/block.rs +1399 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/compat.rs +147 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/head.rs +550 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/inline.rs +1447 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/mod.rs +517 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/sugar.rs +73 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/table.rs +160 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/lower/table_yaml.rs +1360 -0
- tmark_core-0.1.0/crates/tmark-syntax/src/offset.rs +82 -0
- tmark_core-0.1.0/crates/tmark-syntax/tests/smoke.rs +259 -0
- tmark_core-0.1.0/crates/tmark-syntax/tests/subspans.rs +83 -0
- tmark_core-0.1.0/crates/tmark-syntax/tests/totality.proptest-regressions +11 -0
- tmark_core-0.1.0/crates/tmark-syntax/tests/totality.rs +96 -0
- tmark_core-0.1.0/crates/tmark-writers/Cargo.toml +32 -0
- tmark_core-0.1.0/crates/tmark-writers/assets/texsmith.typ +175 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/abbr.rs +105 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/logos.rs +104 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/media.rs +70 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/mod.rs +14 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/out.rs +225 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/refs.rs +195 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/text.rs +282 -0
- tmark_core-0.1.0/crates/tmark-writers/src/common/zero.rs +168 -0
- tmark_core-0.1.0/crates/tmark-writers/src/html/escape.rs +34 -0
- tmark_core-0.1.0/crates/tmark-writers/src/html/mod.rs +1416 -0
- tmark_core-0.1.0/crates/tmark-writers/src/latex/escape.rs +192 -0
- tmark_core-0.1.0/crates/tmark-writers/src/latex/figure.rs +319 -0
- tmark_core-0.1.0/crates/tmark-writers/src/latex/inline.rs +712 -0
- tmark_core-0.1.0/crates/tmark-writers/src/latex/mod.rs +771 -0
- tmark_core-0.1.0/crates/tmark-writers/src/latex/table.rs +731 -0
- tmark_core-0.1.0/crates/tmark-writers/src/lib.rs +372 -0
- tmark_core-0.1.0/crates/tmark-writers/src/mkdocs.rs +1806 -0
- tmark_core-0.1.0/crates/tmark-writers/src/typst/escape.rs +218 -0
- tmark_core-0.1.0/crates/tmark-writers/src/typst/inline.rs +574 -0
- tmark_core-0.1.0/crates/tmark-writers/src/typst/math.rs +132 -0
- tmark_core-0.1.0/crates/tmark-writers/src/typst/mod.rs +767 -0
- tmark_core-0.1.0/crates/tmark-writers/src/typst/table.rs +241 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/citations.rs +111 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/commonmark.rs +642 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/fixtures.rs +94 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/images.rs +65 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/lang.rs +139 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__admonition-collapsed@html.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__admonition-collapsed@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__admonition-collapsed@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-colon@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-colon@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-colon@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-heading@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-heading@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-heading@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-image@html.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-image@latex.snap +36 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-image@typst.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-no-host@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-no-host@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-no-host@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-value-quote@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-value-quote@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__attributes-value-quote@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__autolink-literal-escapes@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__autolink-literal-escapes@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__autolink-literal-escapes@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__blockquote-attributes@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__blockquote-attributes@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__blockquote-attributes@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__caption-table@html.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__caption-table@latex.snap +34 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__caption-table@typst.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-admonition@html.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-admonition@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-admonition@typst.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-div-markdown@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-div-markdown@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-div-markdown@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-prose@html.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-prose@latex.snap +48 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-prose@typst.snap +44 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-subfigures@html.snap +42 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-subfigures@latex.snap +57 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure-subfigures@typst.snap +45 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure@html.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure@latex.snap +45 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-figure@typst.snap +34 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-multicolumn@html.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-multicolumn@latex.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-multicolumn@typst.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-slash-deprecated@html.snap +48 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-slash-deprecated@latex.snap +55 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-slash-deprecated@typst.snap +43 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-tabs@html.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-tabs@latex.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-tabs@typst.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-unknown@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-unknown@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__container-unknown@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__counter-item@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__counter-item@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__counter-item@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-comment@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-comment@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-comment@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-delete@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-delete@latex.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-delete@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-highlight@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-highlight@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-highlight@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-insert@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-insert@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-insert@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-substitute@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-substitute@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__critic-substitute@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__definition-list@html.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__definition-list@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__definition-list@typst.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-compat-unsupported@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-compat-unsupported@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-compat-unsupported@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-include-missing@html.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-include-missing@latex.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-include-missing@typst.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-label-duplicate@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-label-duplicate@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-label-duplicate@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-parse-internal@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-parse-internal@latex.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-parse-internal@typst.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-prefix@html.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-prefix@latex.snap +34 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-prefix@typst.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-ambiguous@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-ambiguous@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-ambiguous@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unnumbered@html.snap +37 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unnumbered@latex.snap +59 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unnumbered@typst.snap +50 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unresolved@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unresolved@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-ref-unresolved@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-align@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-align@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-align@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-column-unknown@html.snap +36 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-column-unknown@latex.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-column-unknown@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-columns@html.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-columns@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-columns@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-placement@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-placement@latex.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-placement@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-row-width@html.snap +41 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-row-width@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-row-width@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-shape@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-shape@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-shape@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-span@html.snap +38 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-span@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-span@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-unknown-key@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-unknown-key@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-unknown-key@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width-sum@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width-sum@latex.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width-sum@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-width@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-yaml@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-yaml@latex.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__diag-table-yaml@typst.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__directive-foreign@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__directive-foreign@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__directive-foreign@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__divider@html.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__divider@latex.snap +40 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__divider@typst.snap +39 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__escape-typst-structural@html.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__escape-typst-structural@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__escape-typst-structural@typst.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-attributes@html.snap +47 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-attributes@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-attributes@typst.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-image@html.snap +60 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-image@latex.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-image@typst.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-include-snippet@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-include-snippet@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-include-snippet@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-listing@html.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-listing@latex.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-listing@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-config@html.snap +34 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-config@latex.snap +34 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-config@typst.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-named@html.snap +56 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-named@latex.snap +37 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-named@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-scalars@html.snap +42 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-scalars@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-scalars@typst.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-settings@html.snap +41 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-settings@latex.snap +38 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-settings@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-spans@html.snap +54 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-spans@latex.snap +35 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table-spans@typst.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table@html.snap +40 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table@latex.snap +37 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__fence-yaml-table@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter-deprecated@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter-deprecated@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__frontmatter@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-flat@html.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-flat@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-flat@typst.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-structured@html.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-structured@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__glossary-structured@typst.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id-unicode@html.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id-unicode@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id-unicode@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-implicit-id@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-unnumbered@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-unnumbered@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__heading-unnumbered@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__html-raw@html.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__html-raw@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__html-raw@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-dashes@html.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-dashes@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-dashes@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-escaped@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-escaped@latex.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include-snippet-escaped@typst.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include@html.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include@latex.snap +35 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__include@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-emoji@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-emoji@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-emoji@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-icon@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-icon@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-icon@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert-off@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert-off@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert-off@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-insert@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-keys-prose@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-keys-prose@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-keys-prose@typst.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-boundaries@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-boundaries@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-boundaries@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-dashes@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-dashes@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-quotes-dashes@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smallcaps@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smallcaps@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smallcaps@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols-escaped@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols-escaped@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols-escaped@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols@latex.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__inline-smart-symbols@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead-run-in@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead-run-in@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead-run-in@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead@latex.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lead@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-destination-escapes@html.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-destination-escapes@latex.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-destination-escapes@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-title-backslash@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-title-backslash@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__link-title-backslash@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-prose@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-prose@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-prose@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-structure@html.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-structure@latex.snap +48 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lint-structure@typst.snap +41 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists-adjacent@html.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists-adjacent@latex.snap +36 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists-adjacent@typst.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists@html.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists@latex.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__lists@typst.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__math@html.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__math@latex.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__math@typst.snap +26 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__moustache@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__moustache@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__moustache@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__notes-and-abbr@html.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__notes-and-abbr@latex.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__notes-and-abbr@typst.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar-escaped@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar-escaped@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar-escaped@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar@html.snap +19 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar@latex.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__progressbar@typst.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bare@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bare@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bare@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bracketed@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bracketed@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-bracketed@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-deprecated@html.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-deprecated@latex.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-deprecated@typst.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-flags@html.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-flags@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-flags@typst.snap +21 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-narrative@html.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-narrative@latex.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-citation-narrative@typst.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-doi@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-doi@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-doi@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-glossary-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-glossary-deprecated@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-glossary-deprecated@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-key-digit-initial@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-key-digit-initial@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__reference-key-digit-initial@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside-deprecated@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside-deprecated@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside@latex.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-aside@typst.snap +27 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-code@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-code@latex.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-code@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-deprecated@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-deprecated@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-suffix-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-suffix-deprecated@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-suffix-deprecated@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-then-bracket@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-then-bracket@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index-then-bracket@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index@latex.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-index@typst.snap +24 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-inline-sugar@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-inline-sugar@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-inline-sugar@typst.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw-deprecated@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw-deprecated@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__role-raw@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span-anchor-deprecated@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span-anchor-deprecated@latex.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span-anchor-deprecated@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span@html.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span@latex.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__span@typst.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-cell-linebreak@html.snap +32 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-cell-linebreak@latex.snap +30 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-cell-linebreak@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-header-markup@html.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-header-markup@latex.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-header-markup@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-pipe-in-code@html.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-pipe-in-code@latex.snap +33 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/fixtures__table-pipe-in-code@typst.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__admonition-collapsed.snap +9 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__attributes-colon.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__attributes-heading.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__attributes-image.snap +8 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__attributes-no-host.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__attributes-value-quote.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__autolink-literal-escapes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__blockquote-attributes.snap +6 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__caption-table.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-admonition.snap +6 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-div-markdown.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-figure-prose.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-figure-subfigures.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-figure.snap +11 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-multicolumn.snap +9 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-slash-deprecated.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-tabs.snap +13 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__container-unknown.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__counter-item.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__critic-comment.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__critic-delete.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__critic-highlight.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__critic-insert.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__critic-substitute.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__definition-list.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-compat-unsupported.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-include-missing.snap +13 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-label-duplicate.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-parse-internal.snap +6 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-prefix.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-ref-ambiguous.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-ref-unnumbered.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-ref-unresolved.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-align.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-column-unknown.snap +23 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-columns.snap +16 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-placement.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-row-width.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-shape.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-span.snap +25 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-unknown-key.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-width-sum.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-width.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__diag-table-yaml.snap +8 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__directive-foreign.snap +11 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__divider.snap +15 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__escape-typst-structural.snap +17 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-attributes.snap +16 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-image.snap +17 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-include-snippet.snap +6 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-listing.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table-config.snap +12 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table-named.snap +43 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table-scalars.snap +29 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table-settings.snap +28 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table-spans.snap +41 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__fence-yaml-table.snap +31 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__frontmatter-deprecated.snap +15 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__frontmatter.snap +14 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__glossary-flat.snap +13 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__glossary-structured.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__heading-implicit-id-unicode.snap +11 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__heading-implicit-id.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__heading-unnumbered.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__html-raw.snap +9 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__include-snippet-dashes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__include-snippet-escaped.snap +9 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__include.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-emoji.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-icon.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-insert-off.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-insert.snap +11 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-keys-prose.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-quotes-boundaries.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-quotes-dashes.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-smallcaps.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-smart-symbols-escaped.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__inline-smart-symbols.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lead-run-in.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lead.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__link-destination-escapes.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__link-title-backslash.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lint-prose.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lint-structure.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lists-adjacent.snap +13 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__lists.snap +10 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__math.snap +15 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__moustache.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__notes-and-abbr.snap +10 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__progressbar-escaped.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__progressbar.snap +6 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-bare.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-bracketed.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-citation-deprecated.snap +22 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-citation-flags.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-citation-narrative.snap +20 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-doi.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-glossary-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__reference-key-digit-initial.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-aside-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-aside.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-code.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-index-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-index-suffix-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-index-then-bracket.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-index.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-inline-sugar.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-raw-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__role-raw.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__rows.snap +182 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__span-anchor-deprecated.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__span.snap +5 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__table-cell-linebreak.snap +18 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__table-header-markup.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/snapshots/web__web__table-pipe-in-code.snap +7 -0
- tmark_core-0.1.0/crates/tmark-writers/tests/web.rs +502 -0
- tmark_core-0.1.0/pyproject.toml +36 -0
- tmark_core-0.1.0/python/tmark/__init__.py +68 -0
- tmark_core-0.1.0/python/tmark/_tmark.pyi +199 -0
- tmark_core-0.1.0/python/tmark/ir/__init__.py +19 -0
- tmark_core-0.1.0/python/tmark/ir/codec.py +402 -0
- tmark_core-0.1.0/python/tmark/ir/model.py +1519 -0
- tmark_core-0.1.0/python/tmark/ir/walk.py +277 -0
- tmark_core-0.1.0/python/tmark/py.typed +0 -0
|
@@ -0,0 +1,1225 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "0.6.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "0.2.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys 0.61.2",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.11"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys 0.61.2",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "autocfg"
|
|
57
|
+
version = "1.5.1"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "biblatex"
|
|
63
|
+
version = "0.12.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "591eba69b7c085632e22ca03606f0bbea68d53bbe26c8962e2d549af20c6a561"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"paste",
|
|
68
|
+
"roman-numerals-rs",
|
|
69
|
+
"strum",
|
|
70
|
+
"unicode-normalization",
|
|
71
|
+
"unscanny",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "bit-set"
|
|
76
|
+
version = "0.8.0"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"bit-vec",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "bit-vec"
|
|
85
|
+
version = "0.8.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "bitflags"
|
|
91
|
+
version = "1.3.2"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bitflags"
|
|
97
|
+
version = "2.13.1"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "cfg-if"
|
|
103
|
+
version = "1.0.4"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "clap"
|
|
109
|
+
version = "4.5.40"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"clap_builder",
|
|
114
|
+
"clap_derive",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "clap_builder"
|
|
119
|
+
version = "4.5.40"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"anstream",
|
|
124
|
+
"anstyle",
|
|
125
|
+
"clap_lex",
|
|
126
|
+
"strsim",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "clap_derive"
|
|
131
|
+
version = "4.5.40"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"heck",
|
|
136
|
+
"proc-macro2",
|
|
137
|
+
"quote",
|
|
138
|
+
"syn 2.0.119",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "clap_lex"
|
|
143
|
+
version = "0.7.7"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "colorchoice"
|
|
149
|
+
version = "1.0.5"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "console"
|
|
155
|
+
version = "0.16.6"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "e96a4956774c13c126a8b5af4daa79384f4d826534c95a02d76afb39e2ab64e3"
|
|
158
|
+
dependencies = [
|
|
159
|
+
"encode_unicode",
|
|
160
|
+
"libc",
|
|
161
|
+
"windows-sys 0.61.2",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "crossbeam-channel"
|
|
166
|
+
version = "0.5.17"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"crossbeam-utils",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "crossbeam-utils"
|
|
175
|
+
version = "0.8.23"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "diff"
|
|
181
|
+
version = "0.1.13"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "dyn-clone"
|
|
187
|
+
version = "1.0.20"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "encode_unicode"
|
|
193
|
+
version = "1.0.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "equivalent"
|
|
199
|
+
version = "1.0.2"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "errno"
|
|
205
|
+
version = "0.3.14"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"libc",
|
|
210
|
+
"windows-sys 0.61.2",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "fastrand"
|
|
215
|
+
version = "2.5.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "fluent-uri"
|
|
221
|
+
version = "0.1.4"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"bitflags 1.3.2",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "fnv"
|
|
230
|
+
version = "1.0.7"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "getrandom"
|
|
236
|
+
version = "0.2.17"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"cfg-if",
|
|
241
|
+
"libc",
|
|
242
|
+
"wasi",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "getrandom"
|
|
247
|
+
version = "0.3.4"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"cfg-if",
|
|
252
|
+
"libc",
|
|
253
|
+
"r-efi",
|
|
254
|
+
"wasip2",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "hashbrown"
|
|
259
|
+
version = "0.15.5"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "heck"
|
|
265
|
+
version = "0.5.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "indexmap"
|
|
271
|
+
version = "2.6.0"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"equivalent",
|
|
276
|
+
"hashbrown",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "indoc"
|
|
281
|
+
version = "2.0.7"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"rustversion",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "insta"
|
|
290
|
+
version = "1.48.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"console",
|
|
295
|
+
"once_cell",
|
|
296
|
+
"similar",
|
|
297
|
+
"tempfile",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "is_terminal_polyfill"
|
|
302
|
+
version = "1.70.2"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "itoa"
|
|
308
|
+
version = "1.0.18"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "lazy_static"
|
|
314
|
+
version = "1.5.0"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "libc"
|
|
320
|
+
version = "0.2.189"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "linux-raw-sys"
|
|
326
|
+
version = "0.4.15"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "log"
|
|
332
|
+
version = "0.4.34"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "lsp-server"
|
|
338
|
+
version = "0.7.8"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "9462c4dc73e17f971ec1f171d44bfffb72e65a130117233388a0ebc7ec5656f9"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"crossbeam-channel",
|
|
343
|
+
"log",
|
|
344
|
+
"serde",
|
|
345
|
+
"serde_derive",
|
|
346
|
+
"serde_json",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "lsp-types"
|
|
351
|
+
version = "0.97.0"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"bitflags 1.3.2",
|
|
356
|
+
"fluent-uri",
|
|
357
|
+
"serde",
|
|
358
|
+
"serde_json",
|
|
359
|
+
"serde_repr",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "memchr"
|
|
364
|
+
version = "2.8.3"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "memoffset"
|
|
370
|
+
version = "0.9.1"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"autocfg",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "num-traits"
|
|
379
|
+
version = "0.2.19"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"autocfg",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "once_cell"
|
|
388
|
+
version = "1.21.4"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "once_cell_polyfill"
|
|
394
|
+
version = "1.70.2"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "paste"
|
|
400
|
+
version = "1.0.15"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "portable-atomic"
|
|
406
|
+
version = "1.15.0"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "ppv-lite86"
|
|
412
|
+
version = "0.2.21"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"zerocopy",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "pretty_assertions"
|
|
421
|
+
version = "1.4.1"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"diff",
|
|
426
|
+
"yansi",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "proc-macro2"
|
|
431
|
+
version = "1.0.107"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"unicode-ident",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "proptest"
|
|
440
|
+
version = "1.8.0"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"bit-set",
|
|
445
|
+
"bit-vec",
|
|
446
|
+
"bitflags 2.13.1",
|
|
447
|
+
"lazy_static",
|
|
448
|
+
"num-traits",
|
|
449
|
+
"rand",
|
|
450
|
+
"rand_chacha",
|
|
451
|
+
"rand_xorshift",
|
|
452
|
+
"regex-syntax",
|
|
453
|
+
"rusty-fork",
|
|
454
|
+
"tempfile",
|
|
455
|
+
"unarray",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "pyo3"
|
|
460
|
+
version = "0.22.6"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"cfg-if",
|
|
465
|
+
"indoc",
|
|
466
|
+
"libc",
|
|
467
|
+
"memoffset",
|
|
468
|
+
"once_cell",
|
|
469
|
+
"portable-atomic",
|
|
470
|
+
"pyo3-build-config",
|
|
471
|
+
"pyo3-ffi",
|
|
472
|
+
"pyo3-macros",
|
|
473
|
+
"unindent",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "pyo3-build-config"
|
|
478
|
+
version = "0.22.6"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"once_cell",
|
|
483
|
+
"target-lexicon",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "pyo3-ffi"
|
|
488
|
+
version = "0.22.6"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"libc",
|
|
493
|
+
"pyo3-build-config",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "pyo3-macros"
|
|
498
|
+
version = "0.22.6"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"proc-macro2",
|
|
503
|
+
"pyo3-macros-backend",
|
|
504
|
+
"quote",
|
|
505
|
+
"syn 2.0.119",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "pyo3-macros-backend"
|
|
510
|
+
version = "0.22.6"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"heck",
|
|
515
|
+
"proc-macro2",
|
|
516
|
+
"pyo3-build-config",
|
|
517
|
+
"quote",
|
|
518
|
+
"syn 2.0.119",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "pythonize"
|
|
523
|
+
version = "0.22.0"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "90fcf491425978bd889015d5430f6473d91bdfa2097262f1e731aadcf6c2113e"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"pyo3",
|
|
528
|
+
"serde",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "quick-error"
|
|
533
|
+
version = "1.2.3"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "quote"
|
|
539
|
+
version = "1.0.47"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"proc-macro2",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "r-efi"
|
|
548
|
+
version = "5.3.0"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "rand"
|
|
554
|
+
version = "0.9.5"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"rand_chacha",
|
|
559
|
+
"rand_core",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "rand_chacha"
|
|
564
|
+
version = "0.9.0"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"ppv-lite86",
|
|
569
|
+
"rand_core",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "rand_core"
|
|
574
|
+
version = "0.9.5"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"getrandom 0.3.4",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "rand_xorshift"
|
|
583
|
+
version = "0.4.0"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"rand_core",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "regex-syntax"
|
|
592
|
+
version = "0.8.11"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "roman-numerals-rs"
|
|
598
|
+
version = "3.1.0"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "c85cd47a33a4510b1424fe796498e174c6a9cf94e606460ef022a19f3e4ff85e"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "rustix"
|
|
604
|
+
version = "0.38.44"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"bitflags 2.13.1",
|
|
609
|
+
"errno",
|
|
610
|
+
"libc",
|
|
611
|
+
"linux-raw-sys",
|
|
612
|
+
"windows-sys 0.59.0",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "rustversion"
|
|
617
|
+
version = "1.0.23"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "rusty-fork"
|
|
623
|
+
version = "0.3.1"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"fnv",
|
|
628
|
+
"quick-error",
|
|
629
|
+
"tempfile",
|
|
630
|
+
"wait-timeout",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "ryu"
|
|
635
|
+
version = "1.0.23"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "schemars"
|
|
641
|
+
version = "0.8.22"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"dyn-clone",
|
|
646
|
+
"schemars_derive",
|
|
647
|
+
"serde",
|
|
648
|
+
"serde_json",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "schemars_derive"
|
|
653
|
+
version = "0.8.22"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"proc-macro2",
|
|
658
|
+
"quote",
|
|
659
|
+
"serde_derive_internals",
|
|
660
|
+
"syn 2.0.119",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "serde"
|
|
665
|
+
version = "1.0.229"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"serde_core",
|
|
670
|
+
"serde_derive",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "serde_core"
|
|
675
|
+
version = "1.0.229"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"serde_derive",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "serde_derive"
|
|
684
|
+
version = "1.0.229"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"proc-macro2",
|
|
689
|
+
"quote",
|
|
690
|
+
"syn 3.0.5",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "serde_derive_internals"
|
|
695
|
+
version = "0.29.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"proc-macro2",
|
|
700
|
+
"quote",
|
|
701
|
+
"syn 2.0.119",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "serde_json"
|
|
706
|
+
version = "1.0.151"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"indexmap",
|
|
711
|
+
"itoa",
|
|
712
|
+
"memchr",
|
|
713
|
+
"serde",
|
|
714
|
+
"serde_core",
|
|
715
|
+
"zmij",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "serde_repr"
|
|
720
|
+
version = "0.1.21"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"proc-macro2",
|
|
725
|
+
"quote",
|
|
726
|
+
"syn 3.0.5",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "serde_spanned"
|
|
731
|
+
version = "0.6.9"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"serde",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "serde_yaml_ng"
|
|
740
|
+
version = "0.10.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"indexmap",
|
|
745
|
+
"itoa",
|
|
746
|
+
"ryu",
|
|
747
|
+
"serde",
|
|
748
|
+
"unsafe-libyaml",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "similar"
|
|
753
|
+
version = "2.7.0"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "strsim"
|
|
759
|
+
version = "0.11.1"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "strum"
|
|
765
|
+
version = "0.27.2"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
768
|
+
dependencies = [
|
|
769
|
+
"strum_macros",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "strum_macros"
|
|
774
|
+
version = "0.27.2"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"heck",
|
|
779
|
+
"proc-macro2",
|
|
780
|
+
"quote",
|
|
781
|
+
"syn 2.0.119",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "syn"
|
|
786
|
+
version = "2.0.119"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"proc-macro2",
|
|
791
|
+
"quote",
|
|
792
|
+
"unicode-ident",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "syn"
|
|
797
|
+
version = "3.0.5"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"proc-macro2",
|
|
802
|
+
"quote",
|
|
803
|
+
"unicode-ident",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "target-lexicon"
|
|
808
|
+
version = "0.12.16"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "tempfile"
|
|
814
|
+
version = "3.15.0"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"cfg-if",
|
|
819
|
+
"fastrand",
|
|
820
|
+
"getrandom 0.2.17",
|
|
821
|
+
"once_cell",
|
|
822
|
+
"rustix",
|
|
823
|
+
"windows-sys 0.59.0",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "tinyvec"
|
|
828
|
+
version = "1.13.2"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "4cf0ded5c4e56918d8f8a339e1bb67d038d3bc6d144ac407904015ba2e4cde9b"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"tinyvec_macros",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "tinyvec_macros"
|
|
837
|
+
version = "0.1.1"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "tmark"
|
|
843
|
+
version = "0.1.0"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"schemars",
|
|
846
|
+
"serde",
|
|
847
|
+
"serde_json",
|
|
848
|
+
"tmark-fmt",
|
|
849
|
+
"tmark-ir",
|
|
850
|
+
"tmark-lint",
|
|
851
|
+
"tmark-registry",
|
|
852
|
+
"tmark-syntax",
|
|
853
|
+
"tmark-writers",
|
|
854
|
+
"toml",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "tmark-cli"
|
|
859
|
+
version = "0.1.0"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"clap",
|
|
862
|
+
"diff",
|
|
863
|
+
"serde_json",
|
|
864
|
+
"tmark",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "tmark-fmt"
|
|
869
|
+
version = "0.1.0"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"insta",
|
|
872
|
+
"proptest",
|
|
873
|
+
"serde_json",
|
|
874
|
+
"tmark-ir",
|
|
875
|
+
"tmark-syntax",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "tmark-ir"
|
|
880
|
+
version = "0.1.0"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"schemars",
|
|
883
|
+
"serde",
|
|
884
|
+
"serde_json",
|
|
885
|
+
"serde_yaml_ng",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "tmark-lint"
|
|
890
|
+
version = "0.1.0"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"tmark-ir",
|
|
893
|
+
"tmark-registry",
|
|
894
|
+
"tmark-syntax",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "tmark-lsp"
|
|
899
|
+
version = "0.1.0"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"crossbeam-channel",
|
|
902
|
+
"lsp-server",
|
|
903
|
+
"lsp-types",
|
|
904
|
+
"serde",
|
|
905
|
+
"serde_json",
|
|
906
|
+
"tmark",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "tmark-markdown"
|
|
911
|
+
version = "0.1.0"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"log",
|
|
914
|
+
"pretty_assertions",
|
|
915
|
+
"serde",
|
|
916
|
+
"serde_json",
|
|
917
|
+
"unicode-id",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "tmark-py"
|
|
922
|
+
version = "0.1.0"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"pyo3",
|
|
925
|
+
"pythonize",
|
|
926
|
+
"serde",
|
|
927
|
+
"serde_json",
|
|
928
|
+
"tmark",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "tmark-registry"
|
|
933
|
+
version = "0.1.0"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"biblatex",
|
|
936
|
+
"schemars",
|
|
937
|
+
"serde",
|
|
938
|
+
"serde_json",
|
|
939
|
+
"tmark-ir",
|
|
940
|
+
"tmark-syntax",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "tmark-syntax"
|
|
945
|
+
version = "0.1.0"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"proptest",
|
|
948
|
+
"serde",
|
|
949
|
+
"serde_json",
|
|
950
|
+
"serde_yaml_ng",
|
|
951
|
+
"tmark-ir",
|
|
952
|
+
"tmark-markdown",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "tmark-wasm"
|
|
957
|
+
version = "0.1.0"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"tmark",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "tmark-writers"
|
|
964
|
+
version = "0.1.0"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"insta",
|
|
967
|
+
"serde",
|
|
968
|
+
"serde_json",
|
|
969
|
+
"tmark-fmt",
|
|
970
|
+
"tmark-ir",
|
|
971
|
+
"tmark-registry",
|
|
972
|
+
"tmark-syntax",
|
|
973
|
+
"unicode-ident",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "toml"
|
|
978
|
+
version = "0.8.23"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"serde",
|
|
983
|
+
"serde_spanned",
|
|
984
|
+
"toml_datetime",
|
|
985
|
+
"toml_edit",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "toml_datetime"
|
|
990
|
+
version = "0.6.11"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"serde",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "toml_edit"
|
|
999
|
+
version = "0.22.27"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"indexmap",
|
|
1004
|
+
"serde",
|
|
1005
|
+
"serde_spanned",
|
|
1006
|
+
"toml_datetime",
|
|
1007
|
+
"toml_write",
|
|
1008
|
+
"winnow",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "toml_write"
|
|
1013
|
+
version = "0.1.2"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "unarray"
|
|
1019
|
+
version = "0.1.4"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "unicode-id"
|
|
1025
|
+
version = "0.3.6"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "unicode-ident"
|
|
1031
|
+
version = "1.0.24"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "unicode-normalization"
|
|
1037
|
+
version = "0.1.25"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"tinyvec",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "unindent"
|
|
1046
|
+
version = "0.2.4"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "unsafe-libyaml"
|
|
1052
|
+
version = "0.2.11"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "unscanny"
|
|
1058
|
+
version = "0.1.0"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "utf8parse"
|
|
1064
|
+
version = "0.2.2"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "wait-timeout"
|
|
1070
|
+
version = "0.2.1"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"libc",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "wasi"
|
|
1079
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "wasip2"
|
|
1085
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"wit-bindgen",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "windows-link"
|
|
1094
|
+
version = "0.2.1"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "windows-sys"
|
|
1100
|
+
version = "0.59.0"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"windows-targets",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "windows-sys"
|
|
1109
|
+
version = "0.61.2"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"windows-link",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "windows-targets"
|
|
1118
|
+
version = "0.52.6"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"windows_aarch64_gnullvm",
|
|
1123
|
+
"windows_aarch64_msvc",
|
|
1124
|
+
"windows_i686_gnu",
|
|
1125
|
+
"windows_i686_gnullvm",
|
|
1126
|
+
"windows_i686_msvc",
|
|
1127
|
+
"windows_x86_64_gnu",
|
|
1128
|
+
"windows_x86_64_gnullvm",
|
|
1129
|
+
"windows_x86_64_msvc",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "windows_aarch64_gnullvm"
|
|
1134
|
+
version = "0.52.6"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "windows_aarch64_msvc"
|
|
1140
|
+
version = "0.52.6"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "windows_i686_gnu"
|
|
1146
|
+
version = "0.52.6"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "windows_i686_gnullvm"
|
|
1152
|
+
version = "0.52.6"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "windows_i686_msvc"
|
|
1158
|
+
version = "0.52.6"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "windows_x86_64_gnu"
|
|
1164
|
+
version = "0.52.6"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "windows_x86_64_gnullvm"
|
|
1170
|
+
version = "0.52.6"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "windows_x86_64_msvc"
|
|
1176
|
+
version = "0.52.6"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "winnow"
|
|
1182
|
+
version = "0.7.15"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"memchr",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "wit-bindgen"
|
|
1191
|
+
version = "0.57.1"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "yansi"
|
|
1197
|
+
version = "1.0.1"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "zerocopy"
|
|
1203
|
+
version = "0.8.57"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"zerocopy-derive",
|
|
1208
|
+
]
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "zerocopy-derive"
|
|
1212
|
+
version = "0.8.57"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"proc-macro2",
|
|
1217
|
+
"quote",
|
|
1218
|
+
"syn 2.0.119",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "zmij"
|
|
1223
|
+
version = "1.0.23"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|