2022-02-16 17:57:20 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-loader"
|
|
|
|
version = "0.6.0"
|
|
|
|
description = "A post-modern text editor."
|
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2023-11-27 16:24:57 +04:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2022-02-16 17:57:20 +04:00
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
|
|
|
|
2022-06-05 14:53:20 +04:00
|
|
|
[[bin]]
|
|
|
|
name = "hx-loader"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-02-16 17:57:20 +04:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-01-30 18:49:26 +04:00
|
|
|
toml = "0.7"
|
2023-05-02 04:57:45 +04:00
|
|
|
etcetera = "0.8"
|
2023-07-27 06:50:40 +04:00
|
|
|
tree-sitter.workspace = true
|
2023-06-06 06:14:36 +04:00
|
|
|
once_cell = "1.18"
|
2022-04-18 07:10:51 +04:00
|
|
|
log = "0.4"
|
2023-11-25 20:37:00 +04:00
|
|
|
which = "5.0.0"
|
2022-04-18 07:10:51 +04:00
|
|
|
|
2022-03-27 06:23:58 +04:00
|
|
|
# TODO: these two should be on !wasm32 only
|
|
|
|
|
2022-02-16 17:57:20 +04:00
|
|
|
# cloning/compiling tree-sitter grammars
|
|
|
|
cc = { version = "1" }
|
|
|
|
threadpool = { version = "1.0" }
|
2023-10-31 11:57:03 +04:00
|
|
|
tempfile = "3.8.1"
|
2023-07-11 21:51:04 +04:00
|
|
|
dunce = "1.0.4"
|
2022-03-27 06:23:58 +04:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2023-04-18 05:06:08 +04:00
|
|
|
libloading = "0.8"
|