2020-11-02 10:46:15 +00:00
|
|
|
[package]
|
|
|
|
name = "lapce-proxy"
|
2022-12-14 19:21:35 +00:00
|
|
|
version = "0.2.5"
|
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-11-16 19:10:09 +00:00
|
|
|
zstd = "0.11"
|
2022-11-04 21:36:56 +00:00
|
|
|
flate2 = "1.0.24"
|
|
|
|
tar = "0.4.38"
|
2022-08-29 19:59:35 +00:00
|
|
|
interprocess = "1.1.1"
|
|
|
|
clap = { version = "3.2.17", features = ["derive"] }
|
2022-09-22 18:24:05 +00:00
|
|
|
once_cell = "1.15"
|
2022-08-17 17:32:35 +00:00
|
|
|
url = "2.2.2"
|
|
|
|
dyn-clone = "1.0.8"
|
2022-03-21 20:51:49 +00:00
|
|
|
which = "4.2.5"
|
2023-01-01 17:06:26 +00:00
|
|
|
regex = "1.7.0"
|
2022-02-03 09:47:08 +00:00
|
|
|
grep-searcher = "0.1.8"
|
|
|
|
grep-matcher = "0.1.5"
|
|
|
|
grep-regex = "0.1.9"
|
2022-09-30 19:19:52 +00:00
|
|
|
walkdir = "2.3.2"
|
2022-02-03 09:47:08 +00:00
|
|
|
ignore = "0.4.18"
|
2022-11-16 19:10:50 +00:00
|
|
|
indexmap = "1"
|
2022-07-05 07:58:58 +00:00
|
|
|
globset = "0.4.9"
|
2022-06-08 08:15:31 +00:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "socks"] }
|
2022-11-17 21:55:46 +00:00
|
|
|
wasmtime = "1.0.0"
|
|
|
|
wasmtime-wasi = "1.0.0"
|
|
|
|
wasi-common = "1.0.0"
|
2022-08-17 17:32:35 +00:00
|
|
|
wasi-experimental-http-wasmtime = { git = "https://github.com/lapce/wasi-experimental-http" }
|
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"
|
2022-10-19 18:03:13 +00:00
|
|
|
alacritty_terminal = "0.17.0"
|
2021-10-15 21:09:31 +00:00
|
|
|
mio = "0.6.20"
|
2022-02-02 17:31:17 +00:00
|
|
|
notify = "5.0.0-pre.13"
|
2022-11-01 19:30:21 +00:00
|
|
|
lapce-xi-rope = { version = "0.3.1", features = ["serde"] }
|
2020-11-02 10:46:15 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-06-30 19:31:49 +00:00
|
|
|
lsp-types = { version = "0.93", features = ["proposed"] }
|
2022-08-17 17:32:35 +00:00
|
|
|
psp-types = { git = "https://github.com/lapce/psp-types" }
|
|
|
|
# psp-types = { path = "../../psp-types" }
|
2020-11-17 22:22:44 +00:00
|
|
|
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
|
|
|
|
crossbeam-channel = "0.5.0"
|
2022-09-19 18:06:49 +00:00
|
|
|
jsonrpc-lite = "0.6.0"
|
2022-10-22 15:02:54 +00:00
|
|
|
serde_json = "1.0.87"
|
2020-11-16 21:58:19 +00:00
|
|
|
anyhow = "1.0.32"
|
2022-08-01 14:33:13 +00:00
|
|
|
toml_edit = { version = "0.14.4", features = ["easy"] }
|
2022-06-07 19:48:35 +00:00
|
|
|
git2 = { version = "0.14.4", features = ["vendored-openssl"] }
|
2022-07-27 20:20:26 +00:00
|
|
|
lapce-core = { path = "../lapce-core" }
|
2022-03-24 20:58:04 +00:00
|
|
|
lapce-rpc = { path = "../lapce-rpc" }
|
2022-06-23 02:03:45 +00:00
|
|
|
trash = "2.1"
|
|
|
|
log = "0.4.17"
|