helix-mods/helix-core/Cargo.toml

32 lines
591 B
TOML
Raw Normal View History

2020-05-20 11:14:51 +02:00
[package]
name = "helix-core"
version = "0.1.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
2021-05-10 18:42:34 +02:00
license = "MPL-2.0"
2020-05-20 11:14:51 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
embed_runtime = []
2020-05-20 11:14:51 +02:00
[dependencies]
2020-09-17 07:57:49 +02:00
helix-syntax = { path = "../helix-syntax" }
2020-09-28 18:00:35 +02:00
ropey = "1.2"
smallvec = "1.4"
tendril = "0.4.2"
2020-09-28 18:00:35 +02:00
unicode-segmentation = "1.6"
unicode-width = "0.1"
2020-05-20 11:14:51 +02:00
# slab = "0.4.2"
2021-04-08 16:18:25 +02:00
tree-sitter = "0.19"
2020-09-28 18:00:35 +02:00
once_cell = "1.4"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
etcetera = "0.3"
rust-embed="5.9.0"