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