[package]
edition = "2024"
rust-version = "1.85"
name = "glyphweaveforge"
version = "0.1.6"
authors = ["Gustavo GutiƩrrez <https://github.com/GustavoGutierrez>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/logo.png",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert Markdown into PDF through an explicit Rust pipeline with minimal and Typst backends."
homepage = "https://github.com/GustavoGutierrez/glyph-weave-forge"
documentation = "https://docs.rs/glyphweaveforge"
readme = "README.md"
keywords = [
"markdown",
"pdf",
"converter",
"typst",
]
categories = [
"text-processing",
"rendering",
]
license = "MIT"
repository = "https://github.com/GustavoGutierrez/glyph-weave-forge"
[package.metadata.docs.rs]
no-default-features = false
features = [
"fs",
"renderer-minimal",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = [
"fs",
"renderer-minimal",
]
fs = []
math = []
mermaid = []
renderer-minimal = []
renderer-typst = [
"dep:typst",
"dep:typst-as-lib",
"dep:typst-pdf",
]
typst = ["renderer-typst"]
[lib]
name = "glyphweaveforge"
path = "src/lib.rs"
[[test]]
name = "api_smoke"
path = "tests/api_smoke.rs"
[[test]]
name = "feature_matrix"
path = "tests/feature_matrix.rs"
[[test]]
name = "pdf_integration"
path = "tests/pdf_integration.rs"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.typst]
version = "0.14.2"
optional = true
[dependencies.typst-as-lib]
version = "0.15.4"
features = [
"typst-kit-fonts",
"typst-kit-embed-fonts",
]
optional = true
default-features = false
[dependencies.typst-pdf]
version = "0.14.2"
optional = true
[dev-dependencies.tempfile]
version = "3"