Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 486 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 486 Bytes

Language Server Protocol in Rust

This crate implements Tokio codec support for the Language Server Protocol. The crate only implements encoding and decoding of messages, and does not aim to ever implement IO and request handling as there are many correct ways to implement either part.

Usage

In your Cargo.toml:

[dependencies]
lsp_rs = { git = "https://github.com/smith61/rls_proto" }

In your main.rs or lib.rs:

extern crate lsp_rs;

use lsp_rs::*;