Skip to content

Implementation of the Language Server Protocol for tokio in Rust

License

Notifications You must be signed in to change notification settings

smith61/rls_proto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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::*;

About

Implementation of the Language Server Protocol for tokio in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages