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