[package]
edition = "2021"
rust-version = "1.87"
name = "rushdown-highlighting"
version = "0.9.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Syntax -highlighting extension for rushdown markdown parser"
homepage = "https://github.com/yuin/rushdown-highlighting"
documentation = "https://docs.rs/rushdown-highlighting"
readme = "README.md"
keywords = [
"markdown",
"commonmark",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/yuin/rushdown-highlighting"
resolver = "2"
[features]
default = ["std"]
std = ["rushdown/default"]
[lib]
name = "rushdown_highlighting"
path = "src/lib.rs"
[[test]]
name = "highlighting"
path = "tests/highlighting.rs"
[dependencies.rushdown]
version = "0.11.0"
default-features = false
[dependencies.syntect]
version = "5.3.0"
features = ["default-fancy"]
default-features = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "abort"