mdbook/examples/remove-emphasis/mdbook-remove-emphasis/Cargo.toml
Eric Huss f51d89ba02 Move error types to mdbook-core
This moves Result and Error to mdbook-core with the anticipation of
using them in user crates. For now, the internal APIs will be using
anyhow directly, but the intent is to transition more of these to
mdbook-core where it makes sense.
2025-07-23 17:29:55 -07:00

16 lines
398 B
TOML

[package]
name = "mdbook-remove-emphasis"
version = "0.1.0"
edition.workspace = true
[dependencies]
anyhow.workspace = true
mdbook = { path = "../../.." }
pulldown-cmark = { version = "0.12.2", default-features = false }
pulldown-cmark-to-cmark = "18.0.0"
serde_json = "1.0.132"
[[bin]]
name = "mdbook-remove-emphasis"
# This is tested through a separate test from the main package.
test = false