summaryrefslogtreecommitdiff
path: root/support/texlab/src/lib.rs
blob: 8644a40f10498c3bdc25aa687cf6864cbb7b9179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#[cfg(feature = "citation")]
pub mod citeproc;

#[cfg(feature = "test")]
pub mod test;

cfg_if::cfg_if! {
    if #[cfg(feature = "server")] {
        mod config;
        mod build;

        pub mod server;
    }
}

pub mod completion;
pub mod components;
pub mod definition;
pub mod diagnostics;
pub mod feature;
pub mod folding;
pub mod forward_search;
pub mod highlight;
pub mod hover;
pub mod link;
pub mod outline;
pub mod protocol;
pub mod reference;
pub mod rename;
pub mod symbol;
pub mod syntax;
pub mod tex;
pub mod workspace;