lapce/lapce-proxy/Cargo.toml

45 lines
1.3 KiB
TOML
Raw Normal View History

2020-11-02 10:46:15 +00:00
[package]
name = "lapce-proxy"
2022-07-14 19:43:16 +00:00
version = "0.1.3"
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-08-17 17:32:35 +00:00
once_cell = "1.13.1"
url = "2.2.2"
dyn-clone = "1.0.8"
2022-03-21 20:51:49 +00:00
which = "4.2.5"
2022-06-07 19:44:06 +00:00
regex = "1.5.6"
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"
globset = "0.4.9"
reqwest = { version = "0.11", features = ["blocking", "json", "socks"] }
2022-08-17 17:32:35 +00:00
wasmtime = "0.39.1"
wasmtime-wasi = "0.39.1"
wasi-common = "0.39.1"
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"
2021-10-17 22:01:54 +00:00
base64 = "0.13.0"
2022-08-17 17:32:35 +00:00
alacritty_terminal = "0.16.1"
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"
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"] }
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"
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"
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" }
trash = "2.1"
log = "0.4.17"