[package]
edition = "2024"
name = "satteri-pulldown-cmark"
version = "0.6.1"
authors = [
"Raph Levien <raph.levien@gmail.com>",
"Marcus Klaas de Vries <mail@marcusklaas.nl>",
"Bruits",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fork of the pulldown-cmark crate with MDX extensions, used in the satteri project."
readme = "README.md"
license = "MIT"
resolver = "2"
[features]
default = [
"std",
"mdx",
]
gen-tests = ["std"]
mdx = [
"dep:oxc_allocator",
"dep:oxc_ast",
"dep:oxc_ast_visit",
"dep:oxc_parser",
"dep:oxc_span",
"satteri-ast/mdx",
]
std = ["memchr/std"]
[lib]
name = "satteri_pulldown_cmark"
path = "src/lib.rs"
[[test]]
name = "commonmark_spec_json"
path = "tests/commonmark_spec_json.rs"
[[test]]
name = "deflist_directive"
path = "tests/deflist_directive.rs"
[[test]]
name = "directive_inline"
path = "tests/directive_inline.rs"
[[test]]
name = "empty_list"
path = "tests/empty_list.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "gfm_autolink_markers"
path = "tests/gfm_autolink_markers.rs"
[[test]]
name = "heading_attrs_directive"
path = "tests/heading_attrs_directive.rs"
[[test]]
name = "html"
path = "tests/html.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "math_granular"
path = "tests/math_granular.rs"
[[test]]
name = "mdx"
path = "tests/mdx.rs"
[[test]]
name = "mdx_heading_attributes"
path = "tests/mdx_heading_attributes.rs"
[[test]]
name = "mdx_math"
path = "tests/mdx_math.rs"
[[test]]
name = "position_conformance"
path = "tests/position_conformance.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[test]]
name = "smart_punct_granular"
path = "tests/smart_punct_granular.rs"
[[test]]
name = "source_integrity"
path = "tests/source_integrity.rs"
[dependencies.bitflags]
version = "2"
[dependencies.memchr]
version = "2.5"
default-features = false
[dependencies.oxc_allocator]
version = "0.121.0"
optional = true
[dependencies.oxc_ast]
version = "0.121.0"
optional = true
[dependencies.oxc_ast_visit]
version = "0.121.0"
optional = true
[dependencies.oxc_parser]
version = "0.121.0"
optional = true
[dependencies.oxc_span]
version = "0.121.0"
optional = true
[dependencies.rustc-hash]
version = "2"
[dependencies.satteri-arena]
version = "0.3.0"
[dependencies.satteri-ast]
version = "0.5.1"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.unicase]
version = "2.6"
[dependencies.unicode-id-start]
version = "1"
[dev-dependencies.bincode]
version = "2.0.1"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1"