[package]
edition = "2021"
name = "mdforge"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Define, validate, and render typed Markdown extensions for LLM-generated content."
homepage = "https://github.com/manabeai/mdforge"
documentation = "https://docs.rs/mdforge"
readme = "README.md"
keywords = [
"markdown",
"llm",
"parser",
"validation",
"dom",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT"
repository = "https://github.com/manabeai/mdforge"
[lib]
name = "mdforge"
path = "src/lib.rs"
[[example]]
name = "recipe_lab"
path = "examples/recipe_lab.rs"
[[test]]
name = "integration_pipeline"
path = "tests/integration_pipeline.rs"
[[test]]
name = "openai_pipeline"
path = "tests/openai_pipeline.rs"
[dependencies.pulldown-cmark]
version = "0.13"
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]