[package]
edition = "2024"
rust-version = "1.95"
name = "merman-rustdoc"
version = "0.7.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Render Mermaid fences in rustdoc with headless Merman SVG output."
homepage = "https://github.com/Latias94/merman"
documentation = "https://docs.rs/merman-rustdoc"
readme = "README.md"
keywords = [
"mermaid",
"rustdoc",
"proc-macro",
"svg",
"docs",
]
categories = [
"development-tools::build-utils",
"visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/merman"
resolver = "2"
[lib]
name = "merman_rustdoc"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "attribute_macro"
path = "tests/attribute_macro.rs"
[[test]]
name = "rustdoc_e2e"
path = "tests/rustdoc_e2e.rs"
[dependencies.merman]
version = "0.7.0"
features = ["render"]
default-features = false
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.roxmltree]
version = "0.20.0"
[dependencies.serde_json]
version = "1.0.138"
features = ["preserve_order"]
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
]