2020-05-20 13:14:51 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2021-06-13 17:35:13 +04:00
|
|
|
version = "0.2.0"
|
2020-05-20 13:14:51 +04:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
2021-05-10 20:42:34 +04:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 18:41:03 +04:00
|
|
|
description = "Helix editor core editing primitives"
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2021-06-18 17:53:29 +04:00
|
|
|
include = ["src/**/*", "README.md"]
|
2020-05-20 13:14:51 +04:00
|
|
|
|
2021-06-04 00:46:56 +04:00
|
|
|
[features]
|
2021-06-05 17:05:08 +04:00
|
|
|
embed_runtime = ["rust-embed"]
|
2021-06-04 00:46:56 +04:00
|
|
|
|
2020-05-20 13:14:51 +04:00
|
|
|
[dependencies]
|
2021-06-18 17:48:31 +04:00
|
|
|
helix-syntax = { version = "0.2", path = "../helix-syntax" }
|
2020-09-17 09:57:49 +04:00
|
|
|
|
2021-06-18 16:55:34 +04:00
|
|
|
ropey = "1.3"
|
2020-09-28 20:00:35 +04:00
|
|
|
smallvec = "1.4"
|
2021-02-15 13:45:48 +04:00
|
|
|
tendril = "0.4.2"
|
2021-06-09 20:07:58 +04:00
|
|
|
unicode-segmentation = "1.7.1"
|
2020-09-28 20:00:35 +04:00
|
|
|
unicode-width = "0.1"
|
2021-06-08 08:20:15 +04:00
|
|
|
unicode-general-category = "0.4.0"
|
2020-05-20 13:14:51 +04:00
|
|
|
# slab = "0.4.2"
|
2021-04-08 18:18:25 +04:00
|
|
|
tree-sitter = "0.19"
|
2021-06-14 12:46:12 +04:00
|
|
|
once_cell = "1.8"
|
2021-06-19 15:26:52 +04:00
|
|
|
arc-swap = "1"
|
2020-09-28 20:00:35 +04:00
|
|
|
regex = "1"
|
2021-03-25 10:26:25 +04:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-14 14:21:46 +04:00
|
|
|
toml = "0.5"
|
2021-04-07 18:56:20 +04:00
|
|
|
|
2021-05-10 11:21:55 +04:00
|
|
|
etcetera = "0.3"
|
2021-06-05 17:05:08 +04:00
|
|
|
rust-embed = { version = "5.9.0", optional = true }
|