2020-11-02 10:46:15 +00:00
|
|
|
[package]
|
|
|
|
name = "lapce-proxy"
|
2023-01-13 19:25:55 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
2020-11-02 10:46:15 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-13 19:25:55 +00:00
|
|
|
alacritty_terminal.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
|
|
clap.workspace = true
|
|
|
|
crossbeam-channel.workspace = true
|
|
|
|
directories.workspace = true
|
|
|
|
flate2.workspace = true
|
|
|
|
indexmap.workspace = true
|
|
|
|
interprocess.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
notify.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
reqwest.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
strum.workspace = true
|
|
|
|
strum_macros.workspace = true
|
|
|
|
tar.workspace = true
|
|
|
|
toml_edit.workspace = true
|
|
|
|
|
|
|
|
lsp-types.workspace = true
|
|
|
|
psp-types.workspace = true
|
|
|
|
|
|
|
|
lapce-xi-rope.workspace = true
|
|
|
|
|
|
|
|
lapce-core.workspace = true
|
|
|
|
lapce-rpc.workspace = true
|
|
|
|
|
|
|
|
# proxy specific dependencies
|
|
|
|
|
|
|
|
url = "2.3.1"
|
2023-01-16 00:19:10 +00:00
|
|
|
zstd = "0.11.2" # follow same version wasmtime-cache in lockfile
|
2023-01-13 19:25:55 +00:00
|
|
|
dyn-clone = "1.0.10"
|
|
|
|
walkdir = "2.3.2"
|
|
|
|
globset = "0.4.9"
|
|
|
|
locale_config = "0.3.0"
|
|
|
|
mio = "0.6.20"
|
|
|
|
jsonrpc-lite = "0.6.0"
|
|
|
|
|
|
|
|
# finding terminal shell
|
2022-03-21 20:51:49 +00:00
|
|
|
which = "4.2.5"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
# git
|
|
|
|
git2 = { version = "0.14.4", features = ["vendored-openssl"] }
|
|
|
|
|
|
|
|
# deleting files
|
|
|
|
trash = "2.1.5"
|
|
|
|
|
|
|
|
# search
|
|
|
|
ignore = "0.4.18"
|
2022-02-03 09:47:08 +00:00
|
|
|
grep-searcher = "0.1.8"
|
|
|
|
grep-matcher = "0.1.5"
|
|
|
|
grep-regex = "0.1.9"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
# wasm
|
2022-11-17 21:55:46 +00:00
|
|
|
wasmtime = "1.0.0"
|
|
|
|
wasmtime-wasi = "1.0.0"
|
|
|
|
wasi-common = "1.0.0"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
[dependencies.wasi-experimental-http-wasmtime]
|
|
|
|
git = "https://github.com/lapce/wasi-experimental-http"
|
|
|
|
# path = "../../wasi-experimental-http/crates/wasi-experimental-http-wasmtime"
|