Skip to main content

css_variable_lsp/
lib.rs

1// Library interface for css-variable-lsp
2// This allows integration tests and external usage
3
4pub const VERSION: &str = env!("CARGO_PKG_VERSION");
5
6pub mod color;
7pub mod completion_context;
8pub mod config_analysis;
9pub mod document_kind;
10pub mod dom_tree;
11pub mod flags;
12pub mod lsp_server;
13pub mod manager;
14pub mod parsers;
15pub mod path_display;
16pub mod runtime_config;
17pub mod specificity;
18pub mod text_utils;
19pub mod types;
20pub mod workspace;