lapce/lapce-proxy/Cargo.toml

36 lines
974 B
TOML
Raw Normal View History

2020-11-02 10:46:15 +00:00
[package]
name = "lapce-proxy"
2022-03-24 17:47:46 +00:00
version = "0.0.12"
2020-11-02 10:46:15 +00:00
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
2021-10-26 10:09:30 +00:00
edition = "2021"
2020-11-02 10:46:15 +00:00
[dependencies]
2022-03-21 20:51:49 +00:00
which = "4.2.5"
2022-02-04 11:09:17 +00:00
regex = "1.5.4"
2022-02-03 09:47:08 +00:00
grep-searcher = "0.1.8"
grep-matcher = "0.1.5"
grep-regex = "0.1.9"
ignore = "0.4.18"
ureq = { version = "2.4.0", features = ["json"] }
2021-12-22 17:06:27 +00:00
wasmer = "2.1.1"
wasmer-wasi = "2.1.1"
2021-10-26 09:48:47 +00:00
directories = "4.0.1"
2021-10-18 21:57:28 +00:00
locale_config = "0.3.0"
2021-10-17 22:01:54 +00:00
base64 = "0.13.0"
2022-03-21 19:14:39 +00:00
alacritty_terminal = "0.16"
2021-10-15 21:09:31 +00:00
mio = "0.6.20"
2022-02-02 17:31:17 +00:00
hotwatch = "0.4.6"
notify = "5.0.0-pre.13"
xi-rope = { git = "https://github.com/lapce/xi-editor", features = ["serde"] }
2020-11-02 10:46:15 +00:00
serde = { version = "1.0", features = ["derive"] }
2021-06-17 10:25:47 +00:00
lsp-types = { version = "0.89.2", features = ["proposed"] }
2020-11-17 22:22:44 +00:00
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
crossbeam-channel = "0.5.0"
jsonrpc-lite = "0.5.0"
2020-11-02 10:46:15 +00:00
serde_json = "1.0.59"
2020-11-16 21:58:19 +00:00
anyhow = "1.0.32"
home = "0.5.3"
toml = "0.5.6"
2021-10-06 13:21:31 +00:00
git2 = { version = "0.13.23", features = ["vendored-openssl"] }
2022-03-24 20:58:04 +00:00
lapce-rpc = { path = "../lapce-rpc" }