[package]
edition = "2024"
name = "badness"
version = "0.2.0"
authors = ["Johan Larsson <johan@jolars.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An LSP, formatter, and linter for LaTeX"
homepage = "https://jolars.github.io/badness/"
readme = "README.md"
keywords = [
"latex",
"language-server",
"formatter",
"linter",
]
categories = [
"command-line-utilities",
"text-processing",
"parsing",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/jolars/badness"
[lib]
name = "badness"
path = "src/lib.rs"
[[bin]]
name = "badness"
path = "src/main.rs"
[[test]]
name = "format"
path = "tests/format.rs"
[[test]]
name = "incremental"
path = "tests/incremental.rs"
[[test]]
name = "lexer_snapshots"
path = "tests/lexer_snapshots.rs"
[[test]]
name = "lsp"
path = "tests/lsp.rs"
[[test]]
name = "parse_compat"
path = "tests/parse_compat.rs"
[[test]]
name = "parse_oracle"
path = "tests/parse_oracle.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "project"
path = "tests/project.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "semantic"
path = "tests/semantic.rs"
[dependencies.annotate-snippets]
version = "0.11.5"
[dependencies.clap]
version = "4.5.51"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.log]
version = "0.4.32"
features = ["release_max_level_info"]
[dependencies.lsp-server]
version = "0.7"
[dependencies.lsp-types]
version = "0.97"
[dependencies.rowan]
version = "0.16.1"
[dependencies.salsa]
version = "0.26.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.smol_str]
version = "0.3.2"
[dev-dependencies.insta]
version = "1.47.2"