lapce/Cargo.toml

31 lines
776 B
TOML
Raw Normal View History

2019-09-03 17:30:08 +00:00
[package]
2020-09-25 09:59:37 +00:00
name = "lapce"
2019-09-03 17:30:08 +00:00
version = "0.0.1"
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
edition = "2018"
[dependencies]
2020-10-15 10:01:40 +00:00
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
2020-09-25 16:11:03 +00:00
include_dir = "0.6.0"
tree-sitter-highlight = "0.3.0"
tree-sitter = "0.17.0"
2020-09-18 13:44:58 +00:00
toml = "0.5.6"
2020-09-17 21:33:59 +00:00
anyhow = "1.0.32"
2020-09-16 21:46:25 +00:00
strum = "0.19"
strum_macros = "0.19"
lazy_static = "1.4.0"
2020-09-11 11:53:57 +00:00
# piet-cairo = "0.0.6"
2019-09-03 17:30:08 +00:00
serde = "1.0"
serde_json = "1.0"
syntect = "3.2"
2020-09-17 21:33:59 +00:00
xi-core-lib = { path = "../xi-editor/rust/core-lib/" }
xi-rope = { path = "../xi-editor/rust/rope/" }
2020-10-14 13:55:06 +00:00
xi-rpc = { path = "../xi-editor/rust/rpc/" }
2019-09-26 13:58:04 +00:00
fzyr = "0.1.2"
2019-09-06 15:48:03 +00:00
uuid = { version = "0.7.4", features = ["v4"] }
2019-09-27 16:21:10 +00:00
lsp-types = "0.61.0"
2020-10-13 12:50:18 +00:00
druid = { git = "https://github.com/linebender/druid", features = ["svg"] }
2020-09-25 16:11:03 +00:00
[build-dependencies]
cc = "*"