[package]
name = "syntect"
description = "library for high quality syntax highlighting and code intelligence using Sublime Text's grammars"
documentation = "https://docs.rs/syntect"
repository = "https://github.com/trishume/syntect"
keywords = ["syntax", "highlighting", "highlighter", "colouring", "parsing"]
categories = ["parser-implementations", "parsing", "text-processing"]
readme = "Readme.md"
license = "MIT"
version = "5.2.0"
authors = ["Tristan Hume <tristan@thume.ca>"]
edition = "2021"
exclude = [
"testdata/*",
"/scripts/*",
"/Makefile",
"/codecov.yml"
]
[dependencies]
yaml-rust = { version = "0.4.5", optional = true }
onig = { version = "6.0", optional = true, default-features = false }
fancy-regex = { version = "0.11", optional = true }
walkdir = "2.0"
regex-syntax = { version = "0.8", optional = true }
bitflags = "1.0.4"
plist = { version = "1.3", optional = true }
bincode = { version = "1.0", optional = true }
flate2 = { version = "1.0", optional = true }
fnv = { version = "1.0", optional = true }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
once_cell = "1.8"
thiserror = "1.0"
[dev-dependencies]
criterion = { version = "0.3", features = [ "html_reports" ] }
rayon = "1.0.0"
regex = "1.0"
getopts = "0.2"
pretty_assertions = "0.6"
rustup-toolchain = "0.1.5"
rustdoc-json = "0.8.8"
public-api = "0.33.1"
expect-test = "1.4.1"
[features]
dump-load = ["flate2", "bincode"]
dump-create = ["flate2", "bincode"]
regex-fancy = ["fancy-regex"]
regex-onig = ["onig"]
parsing = ["regex-syntax", "fnv", "dump-create", "dump-load"]
metadata = ["parsing", "plist-load"]
default-syntaxes = ["parsing", "dump-load"]
default-themes = ["dump-load"]
html = ["parsing"]
plist-load = ["plist"]
yaml-load = ["yaml-rust", "parsing"]
default-onig = ["parsing", "default-syntaxes", "default-themes", "html", "plist-load", "yaml-load", "dump-load", "dump-create", "regex-onig"]
default-fancy = ["parsing", "default-syntaxes", "default-themes", "html", "plist-load", "yaml-load", "dump-load", "dump-create", "regex-fancy"]
default = ["default-onig"]
[lib]
bench = false
[[bench]]
name = "highlighting"
harness = false
[[bench]]
name = "load_and_highlight"
harness = false
[[bench]]
name = "loading"
harness = false
[[bench]]
name = "parsing"
harness = false