1#[doc(inline)]
2pub use crate::{
3 backend::Backend,
4 client::{Client, ClientSync},
5 components::*,
6 feature::{
7 self,
8 completion::{CompletionRequest, SimpleCompletion},
9 diagnostics::{DiagnosticItem, DiagnosticPublisher, DiagnosticSender, SimpleDiagnostic},
10 format::FormatRequest,
11 hover::HoverRequest,
12 inlay::InlayRequest,
13 rename::PrepareRenameRequest,
14 rename::RenameEdits,
15 semantic::{HighlightRequest, SemanticTokensDict},
16 *,
17 },
18 lang::{Lang, LangHelper, TokenTrait},
19 setup_schedule_labels, systems,
20 systems::prefix::{Prefix, Prefixes},
21 systems::spawn_or_insert,
22 util::{
23 fs::*, lsp_range_to_range, offset_to_position, offsets_to_range, position_to_offset,
24 range_to_range, spanned, token::*, triple::*, Spanned,
25 },
26 CreateEvent,
27};