diffguard-lsp 0.2.0

Language Server Protocol server for diffguard with diff-scoped diagnostics
Documentation
[package]
name = "diffguard-lsp"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "Language Server Protocol server for diffguard with diff-scoped diagnostics"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/diffguard-lsp"
keywords.workspace = true
categories.workspace = true
readme = "README.md"
[lib]
name = "diffguard_lsp"
path = "src/lib.rs"

[[bin]]
name = "diffguard-lsp"
path = "src/main.rs"

[dependencies]
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
regex.workspace = true
url = "2.5.7"
lsp-server = "0.7"
lsp-types = "0.97"
diffguard-core = { version = "0.2", path = "../diffguard-core" }
diffguard-domain = { version = "0.2", path = "../diffguard-domain" }
diffguard-types = { version = "0.2", path = "../diffguard-types" }

[dev-dependencies]
diffguard-testkit = { path = "../diffguard-testkit" }
tempfile.workspace = true
insta.workspace = true