Cargo.toml raw

[package]
name = "guiduck-markdown"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true

# A widget crate, so: guiduck-core (the `Widget` contract), guiduck-scene (the
# display list it paints into), and the one thing this widget is actually about.
# Not the facade, not the component macro, not the interpreter — an application
# widget's whole relationship with the framework is `Widget`, and if this list
# grew past that the registry seam would not be doing its job.
[dependencies]
guiduck-core = { workspace = true }
guiduck-scene = { workspace = true }
# Default features off: `html` is a renderer this crate is the alternative to,
# and `getopts` is for its CLI.
pulldown-cmark = { version = "0.13.4", default-features = false }

[dev-dependencies]
guiduck-samples = { path = "../guiduck-samples" }