2022-03-08 15:08:35 +00:00
|
|
|
[package]
|
2024-03-24 17:56:31 +00:00
|
|
|
name = "lapce-core"
|
|
|
|
license = { workspace = true }
|
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
2022-03-08 15:08:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-24 17:56:31 +00:00
|
|
|
directories = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
include_dir = { workspace = true }
|
2024-06-20 21:36:11 +00:00
|
|
|
regex = { workspace = true }
|
2024-03-24 17:56:31 +00:00
|
|
|
|
|
|
|
lsp-types = { workspace = true }
|
|
|
|
lapce-xi-rope = { workspace = true }
|
|
|
|
lapce-rpc = { workspace = true }
|
|
|
|
floem-editor-core = { workspace = true }
|
|
|
|
|
2024-04-15 17:23:32 +00:00
|
|
|
libloading = "0.8.1"
|
2024-03-24 17:56:31 +00:00
|
|
|
slotmap = "1.0"
|
|
|
|
arc-swap = "1.6.0"
|
2024-06-20 21:36:11 +00:00
|
|
|
tree-sitter = "0.22.6"
|
|
|
|
ahash = "0.8.11"
|
2024-08-01 17:07:27 +00:00
|
|
|
remain = "0.2"
|
2024-06-20 21:36:11 +00:00
|
|
|
hashbrown = { version = "0.14.5", features = ["raw"] }
|
|
|
|
|
2022-09-30 20:10:32 +00:00
|
|
|
|
2022-05-09 04:25:42 +00:00
|
|
|
[features]
|
2024-07-12 04:03:12 +00:00
|
|
|
default = []
|
|
|
|
portable = []
|
|
|
|
distribution = []
|
2023-05-14 19:54:17 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-06-02 09:45:03 +00:00
|
|
|
anyhow = { workspace = true }
|
2024-07-20 22:30:29 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "linux"))'.build-dependencies]
|
2024-07-12 04:03:12 +00:00
|
|
|
git2 = { workspace = true }
|