sql-lsp 0.1.3

A high-performance, multi-dialect SQL Language Server Protocol (LSP) implementation in Rust.
Documentation
[[bin]]
name = "sql-lsp"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.dashmap]
version = "5.5"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlformat]
version = "0.2"

[dependencies.sqlparser]
default-features = false
features = ["std"]
optional = true
version = "0.40"

[dependencies.thiserror]
version = "1.0"

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

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

[dependencies.tracing]
version = "0.1"

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

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

[dependencies.tree-sitter-json]
version = "0.24"

[dependencies.tree-sitter-sequel]
version = "0.3.11"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.0"

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

[features]
default = []
strict-parser = ["sqlparser"]

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

[package]
authors = ["LikeRainDay"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "database"]
description = "A high-performance, multi-dialect SQL Language Server Protocol (LSP) implementation in Rust."
edition = "2021"
exclude = ["artifacts/*", "release-assets/*", "scripts/*", ".github/*", "Makefile", "test_samples/*", "tests/*", "ARCHITECTURE.md", "GAP_ANALYSIS.md", "IMPROVEMENTS.md"]
homepage = "https://github.com/LikeRainDay/lsp_sqls"
keywords = ["sql", "lsp", "database", "ide", "language-server"]
license = "MIT"
name = "sql-lsp"
readme = "README.md"
repository = "https://github.com/LikeRainDay/lsp_sqls"
version = "0.1.3"