2020-05-20 18:14:51 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2021-08-14 13:31:23 +09:00
|
|
|
version = "0.4.1"
|
2020-05-20 18:14:51 +09:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 12:07:41 +09:00
|
|
|
edition = "2021"
|
2021-05-11 01:42:34 +09:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 10: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 09:53:29 -04:00
|
|
|
include = ["src/**/*", "README.md"]
|
2020-05-20 18:14:51 +09:00
|
|
|
|
2021-06-03 15:46:56 -05:00
|
|
|
[features]
|
|
|
|
|
2020-05-20 18:14:51 +09:00
|
|
|
[dependencies]
|
2021-08-13 01:28:11 +09:00
|
|
|
helix-syntax = { version = "0.4", path = "../helix-syntax" }
|
2020-09-17 14:57:49 +09:00
|
|
|
|
2021-06-18 08:55:34 -04:00
|
|
|
ropey = "1.3"
|
2021-10-05 12:18:37 +09:00
|
|
|
smallvec = "1.7"
|
2021-02-15 18:45:48 +09:00
|
|
|
tendril = "0.4.2"
|
2021-07-05 23:07:56 +00:00
|
|
|
unicode-segmentation = "1.8"
|
2020-09-29 01:00:35 +09:00
|
|
|
unicode-width = "0.1"
|
2021-06-18 17:31:31 +09:00
|
|
|
unicode-general-category = "0.4"
|
2020-05-20 18:14:51 +09:00
|
|
|
# slab = "0.4.2"
|
2021-09-06 13:18:16 +09:00
|
|
|
tree-sitter = "0.20"
|
2021-06-14 17:46:12 +09:00
|
|
|
once_cell = "1.8"
|
2021-06-19 13:26:52 +02:00
|
|
|
arc-swap = "1"
|
2020-09-29 01:00:35 +09:00
|
|
|
regex = "1"
|
2021-03-25 15:26:25 +09:00
|
|
|
|
2021-10-23 08:52:18 -04:00
|
|
|
log = "0.4"
|
2021-03-25 15:26:25 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-10-08 04:14:12 +02:00
|
|
|
serde_json = "1.0"
|
2021-05-14 19:21:46 +09:00
|
|
|
toml = "0.5"
|
2021-04-07 23:56:20 +09:00
|
|
|
|
2021-10-05 12:18:25 +09:00
|
|
|
similar = "2.1"
|
2021-07-02 10:54:50 -04:00
|
|
|
|
2021-05-10 16:21:55 +09:00
|
|
|
etcetera = "0.3"
|
2021-07-02 10:54:50 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|