[package]
edition = "2024"
name = "panache-parser"
version = "0.2.1"
authors = ["Johan Larsson <johan@jolars.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lossless CST parser and syntax wrappers for Pandoc markdown, Quarto, and RMarkdown"
homepage = "https://panache.bz"
documentation = "https://docs.rs/panache-parser"
readme = "README.md"
keywords = [
"quarto",
"pandoc",
"markdown",
"parser",
"syntax",
]
categories = [
"text-processing",
"parsing",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/jolars/panache"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "panache_parser"
path = "src/lib.rs"
[[test]]
name = "emphasis_parser"
path = "tests/emphasis_parser.rs"
[[test]]
name = "golden_parser_cases"
path = "tests/golden_parser_cases.rs"
[[test]]
name = "syntax_ast"
path = "tests/syntax_ast.rs"
[[test]]
name = "syntax_ast_additional"
path = "tests/syntax_ast_additional.rs"
[[test]]
name = "yaml"
path = "tests/yaml.rs"
[dependencies.log]
version = "0.4.28"
features = ["release_max_level_info"]
[dependencies.rowan]
version = "0.16.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true
[dependencies.unicode-width]
version = "0.2"
[dependencies.yaml_parser]
version = "0.3.0"
[dev-dependencies.insta]
version = "1.47.2"
features = ["json"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.toml]
version = "1.1.2"