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
|
|
|
|
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
|
2023-08-16 21:17:33 +00:00
|
|
|
toml.workspace = true
|
2023-01-13 19:25:55 +00:00
|
|
|
toml_edit.workspace = true
|
2023-06-19 14:51:30 +00:00
|
|
|
tracing.workspace = true
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
jsonrpc-lite = "0.6.0"
|
2023-10-20 18:47:28 +00:00
|
|
|
polling = "3.0.0"
|
2023-10-20 19:04:51 +00:00
|
|
|
libc = "0.2"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
2023-05-22 08:20:59 +00:00
|
|
|
# git
|
2023-10-28 00:18:43 +00:00
|
|
|
git2 = { version = "0.18.1", features = ["vendored-openssl"] }
|
2023-05-22 08:20:59 +00:00
|
|
|
|
2023-01-13 19:25:55 +00:00
|
|
|
# deleting files
|
2023-10-08 21:21:33 +00:00
|
|
|
trash = "3.0.6"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
# search
|
|
|
|
ignore = "0.4.18"
|
2022-02-03 09:47:08 +00:00
|
|
|
grep-searcher = "0.1.8"
|
2023-10-26 19:40:36 +00:00
|
|
|
grep-matcher = "0.1.6"
|
2022-02-03 09:47:08 +00:00
|
|
|
grep-regex = "0.1.9"
|
2023-01-13 19:25:55 +00:00
|
|
|
|
|
|
|
# wasm
|
2023-10-27 21:50:58 +00:00
|
|
|
wasmtime = "14.0.0"
|
|
|
|
wasmtime-wasi = "14.0.0"
|
|
|
|
wasi-common = "14.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"
|
2023-01-28 19:53:46 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-10-20 19:59:44 +00:00
|
|
|
cocoa = "0.25"
|
2023-01-28 19:53:46 +00:00
|
|
|
objc = "0.2"
|
2023-06-19 14:51:30 +00:00
|
|
|
libc = "0.2"
|