lapce/core/Cargo.toml

36 lines
948 B
TOML
Raw Normal View History

2020-10-15 17:03:20 +00:00
[package]
name = "lapce-core"
version = "0.0.1"
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
edition = "2018"
[dependencies]
2020-12-09 18:10:31 +00:00
regex = "1.4.2"
2020-12-07 18:32:13 +00:00
usvg = "0.12.0"
2020-11-16 21:58:19 +00:00
lapce-proxy = { path = "../proxy" }
xi-trace = { path = "../../xi-editor/rust/trace/" }
2020-11-14 22:09:52 +00:00
git2 = "0.13"
2020-10-26 13:54:40 +00:00
jsonrpc-lite = "0.5.0"
2020-10-21 14:41:40 +00:00
bit-vec = "0.5.0"
2020-10-15 19:44:57 +00:00
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
include_dir = "0.6.0"
tree-sitter-highlight = "0.3.0"
tree-sitter = "0.17.0"
toml = "0.5.6"
anyhow = "1.0.32"
strum = "0.19"
strum_macros = "0.19"
lazy_static = "1.4.0"
serde = "1.0"
serde_json = "1.0"
xi-core-lib = { path = "../../xi-editor/rust/core-lib/" }
xi-rope = { path = "../../xi-editor/rust/rope/" }
2020-10-15 17:03:20 +00:00
xi-rpc = { path = "../../xi-editor/rust/rpc/" }
2020-10-15 19:44:57 +00:00
fzyr = "0.1.2"
uuid = { version = "0.7.4", features = ["v4"] }
2020-11-11 13:27:39 +00:00
lsp-types = { version = "0.82.0", features = ["proposed"] }
2020-11-06 09:00:55 +00:00
druid = { path = "../../druid/druid", features = ["svg"] }
2020-10-15 19:44:57 +00:00
[build-dependencies]
cc = "*"