[package]
edition = "2021"
name = "cmark-syntax"
version = "0.7.0"
authors = [
"Maroš Grego <maros@grego.site>",
"Maciej Hirsz <maciej.hirsz@pm.me>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Syntax highlighting for pulldown-cmark"
homepage = "https://github.com/grego/cmark-syntax"
readme = "README.md"
keywords = [
"cmark",
"syntax",
"highlighting",
]
categories = [
"parsing",
"web-programming",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/grego/cmark-syntax"
[features]
default = ["latex2mathml"]
[lib]
name = "cmark_syntax"
path = "src/lib.rs"
[[test]]
name = "math"
path = "tests/math.rs"
[[test]]
name = "rust"
path = "tests/rust.rs"
[[test]]
name = "rust2"
path = "tests/rust2.rs"
[[test]]
name = "sh"
path = "tests/sh.rs"
[[test]]
name = "toml"
path = "tests/toml.rs"
[dependencies.latex2mathml]
version = "0.2.3"
optional = true
[dependencies.logos]
version = "0.15"
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dev-dependencies.pulldown-cmark]
version = "0.12"
features = ["html"]
default-features = false
[dev-dependencies.ramhorns]
version = "1"