lsp_rs

Crates.iolsp_rs
lib.rslsp_rs
version0.1.0
sourcesrc
created_at2017-01-22 22:30:49.878172
updated_at2017-01-22 22:30:49.878172
descriptionTokio Codec support for the Language Server Protocol.
homepagehttps://github.com/smith61/rls_proto
repositoryhttps://github.com/smith61/rls_proto
max_upload_size
id8185
size21,760
Jacob Smith (smith61)

documentation

README

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;
Commit count: 18

cargo fmt