1 unstable release

Uses old Rust 2015

0.1.0 Jan 22, 2017

#14 in #tokio-codec

28 downloads per month

MIT license

21KB
421 lines

Language Server Protocol in Rust

This crate implements Tokio codec support for the server side of 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::server;

Dependencies

~11MB
~216K SLoC