[package]
edition = "2024"
rust-version = "1.95.0"
name = "katana-markdown-engine"
version = "0.1.0"
build = false
exclude = ["tools/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Renderer-neutral Markdown document model for the KatanA ecosystem"
readme = "README.md"
keywords = [
"katana",
"markdown",
"document-model",
"metadata",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/HiroyukiFuruno/katana-markdown-engine"
[lib]
name = "katana_markdown_engine"
path = "src/lib.rs"
[[test]]
name = "canonical_fixtures"
path = "tests/canonical_fixtures.rs"
[[test]]
name = "document_model"
path = "tests/document_model.rs"
[[test]]
name = "metadata_resolution"
path = "tests/metadata_resolution.rs"
[[test]]
name = "parser_adapter_contract"
path = "tests/parser_adapter_contract.rs"
[[test]]
name = "repository_ast_lint"
path = "tests/repository_ast_lint.rs"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.katana-ast-lint]
version = "0.1.0"
[dev-dependencies.tempfile]
version = "3.27.0"