selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code, unused_imports, unused_variables)]
//! Language Server Protocol (LSP) client for semantic code intelligence.
//!
//! Provides go-to-definition, find-references, document symbols, hover, and
//! diagnostics by connecting to language servers (rust-analyzer, pyright,
//! typescript-language-server, gopls) over JSON-RPC 2.0 / stdio.

pub mod client;

pub use client::LspClient;