[package]
edition = "2021"
name = "jsslint-core"
version = "1.1.0"
authors = ["Manuel Koller"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rule engine behind the Journal of Statistical Software (JSS) LaTeX/BibTeX style checker. Powers the jsslint CLI, WASM, Python, and R distributions."
readme = "README.md"
license = "MIT"
repository = "https://github.com/kollerma/jss-style-checker"
[lib]
name = "jsslint_core"
path = "src/lib.rs"
[[example]]
name = "dump_tex"
path = "examples/dump_tex.rs"
[[test]]
name = "bib_parity"
path = "tests/bib_parity.rs"
[[test]]
name = "bib_rules_parity"
path = "tests/bib_rules_parity.rs"
[[test]]
name = "bom_parity"
path = "tests/bom_parity.rs"
[[test]]
name = "engine_parity"
path = "tests/engine_parity.rs"
[[test]]
name = "fixer_parity"
path = "tests/fixer_parity.rs"
[[test]]
name = "lsp_parity"
path = "tests/lsp_parity.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "parser_parity"
path = "tests/parser_parity.rs"
[[test]]
name = "refs_003_online"
path = "tests/refs_003_online.rs"
[[test]]
name = "sarif_parity"
path = "tests/sarif_parity.rs"
[[test]]
name = "terminal_parity"
path = "tests/terminal_parity.rs"
[[test]]
name = "tex_rules_parity"
path = "tests/tex_rules_parity.rs"
[dependencies.difflib]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.toml]
version = "1"
[dev-dependencies]
[build-dependencies.serde]
version = "1"
features = ["derive"]
[build-dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[build-dependencies.serde_yaml]
version = "0.9"