lsp-text 0.9.0

Common functionality for text handling for LSP servers.
Documentation
#![deny(clippy::all)]
#![deny(unsafe_code)]
#![allow(clippy::needless_lifetimes)]

mod rope;
mod text;

pub use rope::*;
pub use text::*;