lapce/core/Cargo.toml

45 lines
1.1 KiB
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-07-16 14:34:03 +00:00
itertools = "0.10.1"
2021-06-17 16:40:24 +00:00
unicode-width = "0.1.8"
unicode-segmentation = "1.7.1"
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"
2021-07-30 09:06:56 +00:00
git2 = "0.13.20"
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-09-03 15:23:09 +00:00
tree-sitter = "=0.19.2"
2021-04-30 11:06:09 +00:00
tree-sitter-rust = "0.19.0"
tree-sitter-highlight = "0.19.2"
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"
2021-05-19 13:47:11 +00:00
xi-rope = { path = "../../xi-editor/rust/rope", features = ["serde"] }
2021-06-17 16:40:24 +00:00
xi-unicode = "0.3.0"
2021-02-18 21:28:57 +00:00
xi-rpc = "0.3.0"
xi-trace = "0.2.0"
2020-10-15 19:44:57 +00:00
fzyr = "0.1.2"
2021-06-16 11:32:02 +00:00
fuzzy-matcher = "0.3.7"
2020-10-15 19:44:57 +00:00
uuid = { version = "0.7.4", features = ["v4"] }
2021-06-17 10:25:47 +00:00
lsp-types = { version = "0.89.2", features = ["proposed"] }
2021-05-17 16:53:58 +00:00
druid = { path = "../../druid/druid", 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 = "*"