2022-03-08 15:08:35 +00:00
|
|
|
[package]
|
|
|
|
name = "lapce-core"
|
2022-03-24 17:47:46 +00:00
|
|
|
version = "0.0.12"
|
2022-03-08 15:08:35 +00:00
|
|
|
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
2022-03-08 20:55:56 +00:00
|
|
|
edition = "2021"
|
2022-03-08 15:08:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-17 09:46:41 +00:00
|
|
|
thiserror = "1.0"
|
2022-03-10 22:07:20 +00:00
|
|
|
itertools = "0.10.3"
|
2022-04-21 11:00:44 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
bitflags = "1.3.2"
|
|
|
|
strum = "0.24.0"
|
|
|
|
strum_macros = "0.24"
|
2022-03-21 09:10:41 +00:00
|
|
|
serde = "1.0"
|
2022-03-10 22:07:20 +00:00
|
|
|
serde_json = "1.0"
|
2022-03-08 20:55:56 +00:00
|
|
|
tree-sitter = "0.20.6"
|
2022-03-17 09:46:41 +00:00
|
|
|
tree-sitter-highlight = "0.20.1"
|
2022-03-10 22:07:20 +00:00
|
|
|
tree-sitter-rust = "0.20.0"
|
2022-03-17 09:46:41 +00:00
|
|
|
tree-sitter-go = "0.19.1"
|
|
|
|
tree-sitter-javascript = "0.20.0"
|
2022-03-21 14:37:00 +00:00
|
|
|
tree-sitter-typescript = "0.20.0"
|
|
|
|
tree-sitter-python = "0.19.1"
|
2022-03-21 14:38:55 +00:00
|
|
|
tree-sitter-toml = "0.20.0"
|
2022-03-29 13:19:35 +00:00
|
|
|
tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir.git", version = "0.19.0" }
|
2022-03-23 16:53:17 +00:00
|
|
|
tree-sitter-php = { git = "https://github.com/tree-sitter/tree-sitter-php.git", version = "0.19.1" }
|
2022-04-15 08:32:02 +00:00
|
|
|
tree-sitter-ruby = { git = "https://github.com/Liberatys/tree-sitter-ruby.git", branch = "chore/allow-range-of-tree-sitter" }
|
2022-03-25 19:24:15 +00:00
|
|
|
tree-sitter-c = "0.20.1"
|
2022-03-25 19:54:56 +00:00
|
|
|
tree-sitter-cpp = "0.20.0"
|
2022-03-28 14:50:58 +00:00
|
|
|
tree-sitter-json = "0.19.0"
|
2022-04-26 12:07:00 +00:00
|
|
|
tree-sitter-md = { git = "https://github.com/MDeiml/tree-sitter-markdown.git", version = "0.0.1" }
|
2022-04-15 01:38:38 +00:00
|
|
|
tree-sitter-html = "0.19.0"
|
2022-03-25 03:01:35 +00:00
|
|
|
tree-sitter-java = { git = "https://github.com/tree-sitter/tree-sitter-java.git", version = "0.20.0" }
|
2022-05-01 20:48:55 +00:00
|
|
|
lsp-types = { version = "0.89.2", features = ["proposed"] }
|
2022-03-10 22:07:20 +00:00
|
|
|
xi-rope = { git = "https://github.com/lapce/xi-editor", features = ["serde"] }
|
2022-03-26 12:35:57 +00:00
|
|
|
lapce-rpc = { path = "../lapce-rpc" }
|