harn-lsp 0.9.21

Language Server Protocol implementation for Harn
Documentation
1
2
3
4
5
6
7
8
9
//! Thin binary shim for the Harn language server.
//!
//! All logic lives in the `harn_lsp` library so the single multi-call `harn`
//! binary can dispatch into it (see `harn-cli`). This binary stays buildable
//! for local development and as a standalone artifact.

fn main() {
    harn_lsp::run();
}