[package]
edition = "2024"
rust-version = "1.95.0"
name = "umd"
version = "0.1.1"
authors = ["logue"]
build = false
exclude = [
".github/**",
"target/**",
"pkg/**",
"AI_Handover_Document.md",
"test_table",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal Markdown - A post-Markdown superset with Bootstrap 5 integration and extensible syntax"
homepage = "https://github.com/logue/umd-core"
documentation = "https://docs.rs/umd"
readme = "README.md"
keywords = [
"markdown",
"parser",
"commonmark",
"bootstrap",
"wasm",
]
categories = [
"parser-implementations",
"text-processing",
"wasm",
]
license = "Apache-2.0"
repository = "https://github.com/logue/umd-core"
[lib]
name = "umd"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "code_block_extensions"
path = "examples/code_block_extensions.rs"
[[example]]
name = "debug_color"
path = "examples/debug_color.rs"
[[example]]
name = "debug_subtle"
path = "examples/debug_subtle.rs"
[[example]]
name = "test_block_color"
path = "examples/test_block_color.rs"
[[example]]
name = "test_bootstrap_integration"
path = "examples/test_bootstrap_integration.rs"
[[example]]
name = "test_comments"
path = "examples/test_comments.rs"
[[example]]
name = "test_comrak_table"
path = "examples/test_comrak_table.rs"
[[example]]
name = "test_debug_conflict"
path = "examples/test_debug_conflict.rs"
[[example]]
name = "test_discord_underline"
path = "examples/test_discord_underline.rs"
[[example]]
name = "test_final_colors"
path = "examples/test_final_colors.rs"
[[example]]
name = "test_footnotes"
path = "examples/test_footnotes.rs"
[[example]]
name = "test_frontmatter"
path = "examples/test_frontmatter.rs"
[[example]]
name = "test_header_id"
path = "examples/test_header_id.rs"
[[example]]
name = "test_media_embedding"
path = "examples/test_media_embedding.rs"
[[example]]
name = "test_output"
path = "examples/test_output.rs"
[[example]]
name = "test_plugin_extended"
path = "examples/test_plugin_extended.rs"
[[example]]
name = "test_plugin_table"
path = "examples/test_plugin_table.rs"
[[example]]
name = "test_semantic_html"
path = "examples/test_semantic_html.rs"
[[example]]
name = "test_simple_umd"
path = "examples/test_simple_umd.rs"
[[example]]
name = "test_strikethrough"
path = "examples/test_strikethrough.rs"
[[example]]
name = "test_table_colspan"
path = "examples/test_table_colspan.rs"
[[example]]
name = "test_table_comparison"
path = "examples/test_table_comparison.rs"
[[example]]
name = "test_umd_header"
path = "examples/test_umd_header.rs"
[[test]]
name = "base_url"
path = "tests/base_url.rs"
[[test]]
name = "bootstrap_integration"
path = "tests/bootstrap_integration.rs"
[[test]]
name = "comments"
path = "tests/comments.rs"
[[test]]
name = "commonmark"
path = "tests/commonmark.rs"
[[test]]
name = "conflict_resolution"
path = "tests/conflict_resolution.rs"
[[test]]
name = "test_semantic_integration"
path = "tests/test_semantic_integration.rs"
[dependencies.ammonia]
version = "4.1.2"
[dependencies.base64]
version = "0.22.1"
[dependencies.comrak]
version = "0.52.0"
[dependencies.html-escape]
version = "0.2.13"
[dependencies.math-core]
version = "0.6.0"
[dependencies.maud]
version = "0.27.0"
[dependencies.once_cell]
version = "1.21.4"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.unicode-segmentation]
version = "1.13.2"
[dependencies.uuid]
version = "1.23.1"
features = [
"v4",
"js",
]
[dependencies.wasm-bindgen]
version = "0.2.120"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.insta]
version = "1.47.2"
[dev-dependencies.wasm-bindgen-test]
version = "0.3.70"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.mermaid-rs-renderer]
version = "0.2.2"
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.syntect]
version = "5.3.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1