2020-05-20 13:14:51 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2022-01-04 13:54:05 +04:00
|
|
|
version = "0.6.0"
|
2020-05-20 13:14:51 +04:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 07:07:41 +04:00
|
|
|
edition = "2021"
|
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]
|
2022-03-16 12:56:53 +04:00
|
|
|
unicode-lines = ["ropey/unicode_lines"]
|
2022-01-18 04:04:40 +04:00
|
|
|
integration = []
|
2021-06-04 00:46:56 +04:00
|
|
|
|
2020-05-20 13:14:51 +04:00
|
|
|
[dependencies]
|
2022-02-16 17:57:20 +04:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
|
|
|
|
2023-02-07 03:44:26 +04:00
|
|
|
ropey = { version = "1.6.0", default-features = false, features = ["simd"] }
|
2023-07-11 05:26:00 +04:00
|
|
|
smallvec = "1.11"
|
2022-03-29 04:07:07 +04:00
|
|
|
smartstring = "1.0.1"
|
2022-09-20 03:28:38 +04:00
|
|
|
unicode-segmentation = "1.10"
|
2020-09-28 20:00:35 +04:00
|
|
|
unicode-width = "0.1"
|
2022-09-27 03:36:40 +04:00
|
|
|
unicode-general-category = "0.6"
|
2020-05-20 13:14:51 +04:00
|
|
|
# slab = "0.4.2"
|
2021-11-06 19:21:03 +04:00
|
|
|
slotmap = "1.0"
|
2023-07-27 06:50:40 +04:00
|
|
|
tree-sitter.workspace = true
|
2023-06-06 06:14:36 +04:00
|
|
|
once_cell = "1.18"
|
2021-06-19 15:26:52 +04:00
|
|
|
arc-swap = "1"
|
2020-09-28 20:00:35 +04:00
|
|
|
regex = "1"
|
2023-08-15 04:33:22 +04:00
|
|
|
bitflags = "2.4"
|
2023-01-31 03:48:21 +04:00
|
|
|
ahash = "0.8.3"
|
2023-06-06 06:14:05 +04:00
|
|
|
hashbrown = { version = "0.14.0", features = ["raw"] }
|
2023-03-30 20:21:40 +04:00
|
|
|
dunce = "1.0"
|
2021-03-25 10:26:25 +04:00
|
|
|
|
2021-10-23 16:52:18 +04:00
|
|
|
log = "0.4"
|
2021-03-25 10:26:25 +04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-10-08 06:14:12 +04:00
|
|
|
serde_json = "1.0"
|
2023-01-30 18:49:26 +04:00
|
|
|
toml = "0.7"
|
2021-04-07 18:56:20 +04:00
|
|
|
|
2022-11-28 06:20:54 +04:00
|
|
|
imara-diff = "0.1.0"
|
2021-07-02 18:54:50 +04:00
|
|
|
|
2021-12-25 19:10:46 +04:00
|
|
|
encoding_rs = "0.8"
|
2021-07-02 18:54:50 +04:00
|
|
|
|
2021-11-21 20:36:03 +04:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
2021-11-16 06:51:10 +04:00
|
|
|
|
2023-05-02 04:57:45 +04:00
|
|
|
etcetera = "0.8"
|
2022-10-24 03:02:58 +04:00
|
|
|
textwrap = "0.16.0"
|
2022-02-13 20:42:18 +04:00
|
|
|
|
2021-07-02 18:54:50 +04:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|
2023-07-18 05:49:11 +04:00
|
|
|
indoc = "2.0.3"
|