[package]
edition = "2024"
name = "markplus_core"
version = "1.0.0"
authors = ["Purnendu Kumar <purnendu@kumargaur.com>"]
build = false
exclude = [
".github/",
"tests/samples/*.pdf",
"tests/samples/*.typ",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal Markdown → AST (JSON) compiler for the MarkPlus ecosystem"
documentation = "https://docs.rs/markplus_core"
readme = "README.md"
keywords = [
"markdown",
"ast",
"parser",
"wasm",
"json",
]
categories = [
"text-processing",
"parsing",
"wasm",
]
license = "Apache-2.0"
repository = "https://github.com/PurnenduK90/markplus-core"
[lib]
name = "markplus_core"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "mpc"
path = "src/main.rs"
[[test]]
name = "schema_validation"
path = "tests/schema_validation.rs"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.jsonschema]
version = "0.46"
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.serde_yml]
version = "0.0.12"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"