Skip to main content

lemma_lsp/
lib.rs

1//! Lemma LSP: library for native (stdio) and WASM (browser streams) builds.
2
3pub mod diagnostics;
4pub mod registry;
5pub mod semantic_tokens;
6pub mod server;
7pub mod workspace;
8
9#[cfg(target_arch = "wasm32")]
10pub mod browser;
11
12#[cfg(not(target_arch = "wasm32"))]
13pub mod stdio;