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 document_kind;
9pub mod dom_tree;
10pub mod flags;
11pub mod lsp_server;
12pub mod manager;
13pub mod parsers;
14pub mod path_display;
15pub mod runtime_config;
16pub mod specificity;
17pub mod text_utils;
18pub mod types;
19pub mod workspace;