Skip to main content
Module

x/parsedown/Cargo.toml

WASM code for parsing Markdown into HTML with light output tweaking
Latest
File
[package]name = "parsedown"version = "1.4.0"authors = ["Rodney Johnson <ask@rodneylab.com>"]edition = "2021"license = "BSD-3-Clause"repository = "https://github.com/rodneylab/parsedown"description = "Markdown processing"
[lib]crate_type = ["cdylib"]
[profile.release]codegen-units = 1incremental = truelto = trueopt-level = "z"
[dependencies]aho-corasick = "0.7.20"deunicode = "1.3.3"getrandom = { version = "0.2.8", features = ["js"] }html5ever = "0.26.0"mrml = { version = "1.2.11", features = ["parse", "render"], default-features = false }nom = { version = "7.1.3", features = ["alloc"] }pulldown-cmark = "0.9.2"serde = { version = "1.0", features = ["derive"] }serde-wasm-bindgen = "0.5.0"textwrap = "0.16.0"url = "2.3.1"wasm-bindgen = { version = "=0.2.84", features = ["serde-serialize"] }