Remove unused dependencies
The dependabot file was matching on tree-sitter crates - that's a relic from v0.6.0 and lower where grammars were regular dependencies. The remaining changes are unused crates that were forgotten about during shuffles like moving path canonicalization from helix-core to helix-loader (and then again from helix-loader to helix-stdx).
This commit is contained in:
parent
3ccf8d58de
commit
ed3bc2b294
7 changed files with 0 additions and 26 deletions
3
.github/dependabot.yml
vendored
3
.github/dependabot.yml
vendored
|
@ -8,9 +8,6 @@ updates:
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
groups:
|
groups:
|
||||||
tree-sitter:
|
|
||||||
patterns:
|
|
||||||
- "tree-sitter*"
|
|
||||||
rust-dependencies:
|
rust-dependencies:
|
||||||
update-types:
|
update-types:
|
||||||
- "minor"
|
- "minor"
|
||||||
|
|
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -1322,9 +1322,7 @@ dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"chrono",
|
"chrono",
|
||||||
"dunce",
|
|
||||||
"encoding_rs",
|
"encoding_rs",
|
||||||
"etcetera",
|
|
||||||
"globset",
|
"globset",
|
||||||
"hashbrown 0.14.5",
|
"hashbrown 0.14.5",
|
||||||
"helix-loader",
|
"helix-loader",
|
||||||
|
@ -1389,7 +1387,6 @@ version = "25.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cc",
|
"cc",
|
||||||
"dunce",
|
|
||||||
"etcetera",
|
"etcetera",
|
||||||
"helix-stdx",
|
"helix-stdx",
|
||||||
"libloading",
|
"libloading",
|
||||||
|
@ -1414,7 +1411,6 @@ dependencies = [
|
||||||
"helix-core",
|
"helix-core",
|
||||||
"helix-loader",
|
"helix-loader",
|
||||||
"helix-lsp-types",
|
"helix-lsp-types",
|
||||||
"helix-parsec",
|
|
||||||
"helix-stdx",
|
"helix-stdx",
|
||||||
"log",
|
"log",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
|
@ -1433,7 +1429,6 @@ dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serde_repr",
|
|
||||||
"url",
|
"url",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1516,7 +1511,6 @@ dependencies = [
|
||||||
"helix-view",
|
"helix-view",
|
||||||
"log",
|
"log",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"serde",
|
|
||||||
"termini",
|
"termini",
|
||||||
"unicode-segmentation",
|
"unicode-segmentation",
|
||||||
]
|
]
|
||||||
|
@ -2308,17 +2302,6 @@ dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde_repr"
|
|
||||||
version = "0.1.19"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_spanned"
|
name = "serde_spanned"
|
||||||
version = "0.6.8"
|
version = "0.6.8"
|
||||||
|
|
|
@ -39,7 +39,6 @@ regex = "1"
|
||||||
bitflags.workspace = true
|
bitflags.workspace = true
|
||||||
ahash = "0.8.11"
|
ahash = "0.8.11"
|
||||||
hashbrown = { version = "0.14.5", features = ["raw"] }
|
hashbrown = { version = "0.14.5", features = ["raw"] }
|
||||||
dunce = "1.0"
|
|
||||||
url = "2.5.4"
|
url = "2.5.4"
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@ -54,7 +53,6 @@ encoding_rs = "0.8"
|
||||||
|
|
||||||
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
||||||
|
|
||||||
etcetera = "0.8"
|
|
||||||
textwrap = "0.16.1"
|
textwrap = "0.16.1"
|
||||||
|
|
||||||
nucleo.workspace = true
|
nucleo.workspace = true
|
||||||
|
|
|
@ -31,7 +31,6 @@ log = "0.4"
|
||||||
cc = { version = "1" }
|
cc = { version = "1" }
|
||||||
threadpool = { version = "1.0" }
|
threadpool = { version = "1.0" }
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
dunce = "1.0.5"
|
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
libloading = "0.8"
|
libloading = "0.8"
|
||||||
|
|
|
@ -24,7 +24,6 @@ license = "MIT"
|
||||||
bitflags.workspace = true
|
bitflags.workspace = true
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
serde_json = "1.0.138"
|
serde_json = "1.0.138"
|
||||||
serde_repr = "0.1"
|
|
||||||
url = {version = "2.5.4", features = ["serde"]}
|
url = {version = "2.5.4", features = ["serde"]}
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -16,7 +16,6 @@ homepage.workspace = true
|
||||||
helix-stdx = { path = "../helix-stdx" }
|
helix-stdx = { path = "../helix-stdx" }
|
||||||
helix-core = { path = "../helix-core" }
|
helix-core = { path = "../helix-core" }
|
||||||
helix-loader = { path = "../helix-loader" }
|
helix-loader = { path = "../helix-loader" }
|
||||||
helix-parsec = { path = "../helix-parsec" }
|
|
||||||
helix-lsp-types = { path = "../helix-lsp-types" }
|
helix-lsp-types = { path = "../helix-lsp-types" }
|
||||||
|
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
|
@ -23,6 +23,5 @@ cassowary = "0.3"
|
||||||
unicode-segmentation.workspace = true
|
unicode-segmentation.workspace = true
|
||||||
crossterm = { version = "0.28", optional = true }
|
crossterm = { version = "0.28", optional = true }
|
||||||
termini = "1.0"
|
termini = "1.0"
|
||||||
serde = { version = "1", "optional" = true, features = ["derive"]}
|
|
||||||
once_cell = "1.20"
|
once_cell = "1.20"
|
||||||
log = "~0.4"
|
log = "~0.4"
|
||||||
|
|
Loading…
Add table
Reference in a new issue