[package]
edition = "2021"
rust-version = "1.80"
name = "moss-core"
version = "0.7.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust content engine for moss: AST, render, resolve, validate, frontmatter, schema."
readme = "README.md"
keywords = [
"static-site",
"markdown",
"ast",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/Symbiosis-Lab/moss-core"
[features]
cjk-friendly-emphasis = []
default = []
specta = ["dep:specta"]
[lib]
name = "moss_core"
path = "src/lib.rs"
[[test]]
name = "attr_value_render"
path = "tests/attr_value_render.rs"
[[test]]
name = "components_test"
path = "tests/components_test.rs"
[[test]]
name = "describe_test"
path = "tests/describe_test.rs"
[[test]]
name = "folder_embed_params"
path = "tests/folder_embed_params.rs"
[[test]]
name = "footnotes_and_strikethrough"
path = "tests/footnotes_and_strikethrough.rs"
[[test]]
name = "math_delimiters"
path = "tests/math_delimiters.rs"
[[test]]
name = "math_parsing"
path = "tests/math_parsing.rs"
[[test]]
name = "never_panics"
path = "tests/never_panics.rs"
[[test]]
name = "parser_parity"
path = "tests/parser_parity.rs"
[[test]]
name = "shortcode_structure_parity"
path = "tests/shortcode_structure_parity.rs"
[[test]]
name = "tokens_test"
path = "tests/tokens_test.rs"
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.specta]
version = "=2.0.0-rc.20"
features = ["derive"]
optional = true
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.proptest]
version = "1.5"
[build-dependencies.serde_json]
version = "1.0"
[lints.clippy]
disallowed_methods = "warn"
too_many_lines = "warn"