2022-02-16 14:57:20 +01:00
|
|
|
[package]
|
|
|
|
name = "helix-loader"
|
2023-12-05 02:54:18 +01:00
|
|
|
description = "Build bootstrapping for Helix crates"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 13:24:57 +01:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 02:54:18 +01:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2022-02-16 14:57:20 +01:00
|
|
|
|
2022-06-05 12:53:20 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "hx-loader"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-02-16 14:57:20 +01:00
|
|
|
[dependencies]
|
2024-01-16 20:00:06 +01:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
|
|
|
|
2022-02-16 14:57:20 +01:00
|
|
|
anyhow = "1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-01-30 15:49:26 +01:00
|
|
|
toml = "0.7"
|
2023-05-02 02:57:45 +02:00
|
|
|
etcetera = "0.8"
|
2023-07-27 04:50:40 +02:00
|
|
|
tree-sitter.workspace = true
|
2023-12-12 14:46:11 +01:00
|
|
|
once_cell = "1.19"
|
2022-04-18 05:10:51 +02:00
|
|
|
log = "0.4"
|
|
|
|
|
2022-03-27 04:23:58 +02:00
|
|
|
# TODO: these two should be on !wasm32 only
|
|
|
|
|
2022-02-16 14:57:20 +01:00
|
|
|
# cloning/compiling tree-sitter grammars
|
|
|
|
cc = { version = "1" }
|
|
|
|
threadpool = { version = "1.0" }
|
2024-02-12 02:23:24 +01:00
|
|
|
tempfile = "3.10.0"
|
2023-07-11 19:51:04 +02:00
|
|
|
dunce = "1.0.4"
|
2022-03-27 04:23:58 +02:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2023-04-18 03:06:08 +02:00
|
|
|
libloading = "0.8"
|