mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
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).
36 lines
803 B
TOML
36 lines
803 B
TOML
[package]
|
|
name = "helix-loader"
|
|
description = "Build bootstrapping for Helix crates"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[[bin]]
|
|
name = "hx-loader"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
helix-stdx = { path = "../helix-stdx" }
|
|
|
|
anyhow = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.8"
|
|
etcetera = "0.8"
|
|
tree-sitter.workspace = true
|
|
once_cell = "1.20"
|
|
log = "0.4"
|
|
|
|
# TODO: these two should be on !wasm32 only
|
|
|
|
# cloning/compiling tree-sitter grammars
|
|
cc = { version = "1" }
|
|
threadpool = { version = "1.0" }
|
|
tempfile.workspace = true
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
libloading = "0.8"
|