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