lapce/core/Cargo.toml

41 lines
1002 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]
2021-05-10 14:59:42 +00:00
im = { version = "15.0.0", features = ["serde"] }
2021-02-19 11:12:05 +00:00
crossbeam-channel = "0.5.0"
2021-05-10 14:59:42 +00:00
crossbeam-utils = "0.8.4"
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-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"
2021-04-30 11:06:09 +00:00
tree-sitter-go = "0.16.0"
tree-sitter-rust = "0.19.0"
tree-sitter-highlight = "0.19.2"
tree-sitter = "0.19.3"
2020-10-15 19:44:57 +00:00
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"
2021-02-18 21:28:57 +00:00
xi-core-lib = "0.3.0"
xi-rope = "0.3.0"
xi-rpc = "0.3.0"
xi-trace = "0.2.0"
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"] }
2021-05-14 12:28:56 +00:00
druid = { git = "https://github.com/linebender/druid.git", features = ["svg", "im"] }
2021-02-19 11:12:05 +00:00
lapce-proxy = { path = "../proxy" }
2020-10-15 19:44:57 +00:00
[build-dependencies]
cc = "*"