cooklang-language-server 0.2.2

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 completion;
mod diagnostics;
mod document;
mod hover;
pub mod lsp;
mod semantic_tokens;
mod state;
mod symbols;
pub mod utils;

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