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"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
toml = "0.5"
|
2022-05-17 05:32:18 +02:00
|
|
|
etcetera = "0.4"
|
2022-02-16 14:57:20 +01:00
|
|
|
tree-sitter = "0.20"
|
2022-05-24 01:13:58 +02:00
|
|
|
once_cell = "1.12"
|
2022-02-16 14:57:20 +01:00
|
|
|
|
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" }
|
2022-03-27 04:23:58 +02:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
libloading = "0.7"
|
|
|
|
|