cooklang-language-server 0.1.0

Language Server Protocol implementation for Cooklang
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod backend;
mod state;
mod document;
mod diagnostics;
mod semantic_tokens;
mod completion;
mod hover;
mod symbols;
pub mod utils;
pub mod lsp;

pub use backend::Backend;
pub use state::ServerState;
pub use document::Document;
pub use lsp::LineEndings;