mirror of https://github.com/lapce/lapce.git
fix: move globset to workspace deps (#3000)
This commit is contained in:
parent
8d1c65df98
commit
49e4df0e89
|
@ -42,6 +42,7 @@ clap = { version = "3.2.25", features = ["derive"] }
|
|||
crossbeam-channel = "0.5.11"
|
||||
directories = "4.0.1"
|
||||
flate2 = "1.0"
|
||||
globset = "0.4.13"
|
||||
hashbrown = { version = "0.14.0", features = ["serde"] }
|
||||
im = { version = "15.0.0", features = ["serde"] }
|
||||
include_dir = "0.6.2"
|
||||
|
|
|
@ -13,6 +13,7 @@ clap.workspace = true
|
|||
crossbeam-channel.workspace = true
|
||||
directories.workspace = true
|
||||
flate2.workspace = true
|
||||
globset.workspace = true
|
||||
im.workspace = true
|
||||
include_dir.workspace = true
|
||||
indexmap.workspace = true
|
||||
|
@ -52,16 +53,13 @@ sled = "0.34.7"
|
|||
bytemuck = "1.14.0"
|
||||
tokio = { version = "1.36", features = ["full"] }
|
||||
futures = "0.3.26"
|
||||
floem = { git = "https://github.com/lapce/floem", rev = "341afd255f98ca431e4f615864daa4dbcc057501", features = [
|
||||
"serde",
|
||||
] }
|
||||
floem = { git = "https://github.com/lapce/floem", rev = "341afd255f98ca431e4f615864daa4dbcc057501", features = ["serde"] }
|
||||
# floem = { path = "../../workspaces/floem", features = ["serde"] }
|
||||
config = { version = "0.13.2", default-features = false, features = ["toml"] }
|
||||
structdesc = { git = "https://github.com/lapce/structdesc" }
|
||||
base64 = "0.21.7"
|
||||
sha2 = "0.10.6"
|
||||
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }
|
||||
globset = "0.4.13"
|
||||
|
||||
[target.'cfg(target_os="macos")'.dependencies]
|
||||
fs_extra = "1.2.0"
|
||||
|
|
|
@ -11,6 +11,7 @@ clap.workspace = true
|
|||
crossbeam-channel.workspace = true
|
||||
directories.workspace = true
|
||||
flate2.workspace = true
|
||||
globset.workspace = true
|
||||
indexmap.workspace = true
|
||||
interprocess.workspace = true
|
||||
notify.workspace = true
|
||||
|
@ -26,6 +27,7 @@ tar.workspace = true
|
|||
toml.workspace = true
|
||||
toml_edit.workspace = true
|
||||
tracing.workspace = true
|
||||
url.workspace = true
|
||||
|
||||
lsp-types.workspace = true
|
||||
psp-types.workspace = true
|
||||
|
@ -39,11 +41,9 @@ floem-editor-core.workspace = true
|
|||
|
||||
# proxy specific dependencies
|
||||
|
||||
url = "2.5.0"
|
||||
zstd = "0.11.2" # follow same version wasmtime-cache in lockfile
|
||||
dyn-clone = "1.0.16"
|
||||
walkdir = "2.3.2"
|
||||
globset = "0.4.13"
|
||||
locale_config = "0.3.0"
|
||||
jsonrpc-lite = "0.6.0"
|
||||
polling = "3.0.0"
|
||||
|
|
Loading…
Reference in New Issue