sql-lsp 0.1.3

A high-performance, multi-dialect SQL Language Server Protocol (LSP) implementation in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod dialect;
pub mod dialects;
pub mod parser;
pub mod schema;
pub mod server;
pub mod token;

pub use dialect::Dialect;
pub use parser::{CompletionContext, ParseResult, SqlParser};
pub use schema::{Schema, SchemaId, SchemaManager};
pub use server::SqlLspServer;