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