lsp_bin/
lib.rs

1#![doc(
2    html_logo_url = "https://ajuvercr.github.io/semantic-web-lsp/assets/icons/favicon.png",
3    html_favicon_url = "https://ajuvercr.github.io/semantic-web-lsp/assets/icons/favicon.ico"
4)]
5use std::ops::Range;
6
7pub mod timings;
8pub mod client;
9pub use client::TowerClient;
10
11#[derive(Debug, PartialEq, Clone, Hash, Eq)]
12pub struct Error {
13    pub msg: String,
14    pub span: Range<usize>,
15}