async-rust-lsp 0.2.2

LSP server that detects tokio::sync::Mutex guards held across .await points — a pattern clippy misses
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "async-rust-lsp"
version = "0.2.2"
build = false
exclude = [
    "src/agent_template/",
    ".claude-plugin/",
    "hooks/",
    ".lsp.json",
    ".env*",
    "uv.lock",
    "pyproject.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LSP server that detects tokio::sync::Mutex guards held across .await points — a pattern clippy misses"
homepage = "https://github.com/rgbkrk/async-rust-lsp"
readme = "README.md"
keywords = [
    "lsp",
    "tokio",
    "async",
    "deadlock",
    "lint",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/rgbkrk/async-rust-lsp"

[lib]
name = "async_rust_lsp"
path = "src/lib.rs"

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

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tower-lsp]
version = "0.20"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-appender]
version = "0.2"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.tree-sitter]
version = "0.22"

[dependencies.tree-sitter-rust]
version = "0.21"

[dev-dependencies.tokio-test]
version = "0.4"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1