[package] name = "dprint-plugin-markdown" version = "0.17.8" authors = ["David Sherret "] edition = "2021" homepage = "https://github.com/dprint/dprint-plugin-markdown" license = "MIT" repository = "https://github.com/dprint/dprint-plugin-markdown" description = "Markdown formatter for dprint." [lib] crate-type = ["lib", "cdylib"] [profile.release] opt-level = 3 debug = false lto = true debug-assertions = false overflow-checks = false panic = "abort" [features] wasm = ["serde_json", "dprint-core/wasm"] tracing = ["dprint-core/tracing"] [[test]] name = "specs" path = "tests/spec_test.rs" harness = false [dependencies] anyhow = "1.0.64" dprint-core = { version = "0.66.2", features = ["formatting"] } dprint-core-macros = "0.1.0" pulldown-cmark = { version = "0.11.2", default-features = false } regex = "1" serde = { version = "1.0.144", features = ["derive"] } serde_json = { version = "1.0", optional = true } unicode-width = "0.1.10" [dev-dependencies] dprint-development = "0.10.1" serde_json = { version = "1.0" }