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.
16 lines
398 B
TOML
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
|