2022-02-16 14:57:20 +01:00
|
|
|
[package]
|
|
|
|
name = "helix-loader"
|
|
|
|
version = "0.6.0"
|
|
|
|
description = "A post-modern text editor."
|
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
|
|
|
|
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]
|
|
|
|
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"
|
2022-02-16 14:57:20 +01:00
|
|
|
tree-sitter = "0.20"
|
2023-06-06 04:14:36 +02:00
|
|
|
once_cell = "1.18"
|
2022-04-18 05:10:51 +02:00
|
|
|
log = "0.4"
|
2023-06-12 17:32:36 +02:00
|
|
|
which = "4.4"
|
2022-04-18 05:10:51 +02:00
|
|
|
|
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" }
|
2023-04-18 03:10:19 +02:00
|
|
|
tempfile = "3.5.0"
|
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"
|