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