lapce/lapce-proxy/Cargo.toml

70 lines
2.0 KiB
TOML
Raw Normal View History

2020-11-02 10:46:15 +00:00
[package]
2024-03-24 17:56:31 +00:00
name = "lapce-proxy"
license = { workspace = true }
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
2020-11-02 10:46:15 +00:00
[dependencies]
2024-03-24 17:56:31 +00:00
alacritty_terminal = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true }
crossbeam-channel = { workspace = true }
directories = { workspace = true }
flate2 = { workspace = true }
git2 = { workspace = true }
2024-03-24 17:56:31 +00:00
globset = { workspace = true }
indexmap = { workspace = true }
interprocess = { workspace = true }
notify = { workspace = true }
parking_lot = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tar = { workspace = true }
toml = { workspace = true }
tracing = { workspace = true }
tracing-log = { workspace = true }
2024-03-24 17:56:31 +00:00
url = { workspace = true }
2024-03-24 17:56:31 +00:00
lsp-types = { workspace = true }
psp-types = { workspace = true }
2024-03-24 17:56:31 +00:00
lapce-xi-rope = { workspace = true }
lapce-core = { workspace = true }
lapce-rpc = { workspace = true }
floem-editor-core = { workspace = true }
Floem Editor (#2909) * Initial sketch of floem-editor * Very basic phantom * Basic wrapping + layout styling * More phantom, more styling, more view code * Line height, more drawing code * More drawing logic * Move to separate crate * Add example; fixes * Partial reimpl of Lapce's Document * Downcasting Document; add basic EditorData impl * Progress on implementing run_command * More progress on run_command * Editor container view * Hook up modal and smart tab * Receive char * Add clicking support * Add Ctrl+{Home,End} * Remove usage of buffer in Cursor::yank * Bunch of editor -> new editor functions impl * Scroll commands and other bits * Make buildable * Cursor blink; remove vestiges of sticky header * Impl compute screen lines for new doc * Replace existing modules with floem-editor versions * Shift over to using floem-editor (broken) * Remove uses of original doc * Rename doc2 -> doc * Don't force Rc to allow swapping out Editor signals * Add Styling::id; various minor changes * Fix updating Lines * Hook up styling * Deduplicate many pieces of paint logic * Make indentation on newline configurable * Impl scroll commands * Add clippy changes from non-rebased commit * Simplify+improve view update logic; fix style sharing bug * Stop returning SyntaxEdit on edits This was needed so that we can avoid depending on tree-sitter when extracting the buffer + editing logic out to floem-editor This actually makes it cheaper in the cases where we don't need the edits. However we are factoring the delta twice now. It would be better to not do that. * Remove Syntax usage in Buffer * Move syntax/util.rs, because syntax won't be in floem-editor-core * Move all editor logic out of lapce-core and into floem-editor-core * Remove lapce deps from floem-editor * Fix warnings * Fix various floem-editor TODOs * Make cursor blink at the correct times * Move last_movement onto floem-editor * Rename core Editor -> Action to avoid name collisions * Avoid crash where line is out of bounds while loading file * Return iterative ropes with deltas * Put off some todos; Reimpl some missing select cmds * Dispose of editor on cleanup * Move floem-editor to floem; various changes from that * Update to use latest floem * Update floem; Pass cache rev
2024-02-12 21:23:15 +00:00
# proxy specific dependencies
2024-03-24 17:56:31 +00:00
zstd = "0.11.2" # follow same version wasmtime-cache in lockfile
dyn-clone = "1.0.16"
walkdir = "2.4.0"
locale_config = "0.3.0"
2024-03-24 17:56:31 +00:00
jsonrpc-lite = "0.6.0"
polling = "3.5.0"
2024-03-24 17:56:31 +00:00
libc = "0.2"
# deleting files
trash = "3.0.6"
# search
ignore = "0.4"
grep-searcher = "0.1"
grep-matcher = "0.1"
grep-regex = "0.1"
# wasm
2024-03-24 17:56:31 +00:00
wasmtime = "14.0.0"
wasmtime-wasi = "14.0.0"
2024-03-24 17:56:31 +00:00
wasi-common = "14.0.0"
[dependencies.wasi-experimental-http-wasmtime]
git = "https://github.com/lapce/wasi-experimental-http"
# path = "../../wasi-experimental-http/crates/wasi-experimental-http-wasmtime"
[target.'cfg(target_os = "macos")'.dependencies]
2024-06-02 09:45:03 +00:00
libc = "0.2"