Files
leaf/lsp/Cargo.toml
T

18 lines
451 B
TOML
Raw Normal View History

2026-03-08 14:34:12 +01:00
[package]
name = "leaf_lsp"
version = "0.1.0"
edition = "2024"
[dependencies]
leaf_parser = { path = "../parser" }
leaf_compiler = { path = "../compiler" }
leaf_assembly = { path = "../assembly" }
leaf_allocators = { path = "../allocators" }
tower-lsp-server = "0.23.0"
tokio = { version = "1.50.0", features = ["io-std", "macros", "rt-multi-thread", "sync"] }
scc = "3.6.9"
rust_search = "2.1.0"
rangemap = "1.7.1"
boxcar = "0.2.14"
2026-03-09 00:52:28 +01:00
ropey = "1.6.1"