2020-05-20 18:14:51 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2022-01-04 18:54:05 +09:00
|
|
|
version = "0.6.0"
|
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]
|
2022-03-16 17:56:53 +09:00
|
|
|
unicode-lines = ["ropey/unicode_lines"]
|
2022-01-17 19:04:40 -05:00
|
|
|
integration = []
|
2021-06-03 15:46:56 -05:00
|
|
|
|
2020-05-20 18:14:51 +09:00
|
|
|
[dependencies]
|
2022-02-16 07:57:20 -06:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
|
|
|
|
2023-01-02 21:09:50 -06:00
|
|
|
ropey = { version = "1.5.1", default-features = false, features = ["simd"] }
|
2022-10-03 18:38:24 -05:00
|
|
|
smallvec = "1.10"
|
2022-03-29 09:07:07 +09:00
|
|
|
smartstring = "1.0.1"
|
2022-09-19 18:28:38 -05:00
|
|
|
unicode-segmentation = "1.10"
|
2020-09-29 01:00:35 +09:00
|
|
|
unicode-width = "0.1"
|
2022-09-26 18:36:40 -05:00
|
|
|
unicode-general-category = "0.6"
|
2020-05-20 18:14:51 +09:00
|
|
|
# slab = "0.4.2"
|
2021-11-07 00:21:03 +09:00
|
|
|
slotmap = "1.0"
|
2021-09-06 13:18:16 +09:00
|
|
|
tree-sitter = "0.20"
|
2023-01-02 21:07:25 -06:00
|
|
|
once_cell = "1.17"
|
2021-06-19 13:26:52 +02:00
|
|
|
arc-swap = "1"
|
2020-09-29 01:00:35 +09:00
|
|
|
regex = "1"
|
2022-10-11 08:48:12 +02:00
|
|
|
bitflags = "1.3"
|
2022-11-22 03:54:22 +01:00
|
|
|
ahash = "0.8.2"
|
2023-01-17 10:07:09 +09:00
|
|
|
hashbrown = { version = "0.13.2", features = ["raw"] }
|
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"
|
2023-01-24 11:10:35 -06:00
|
|
|
toml = "0.6"
|
2021-04-07 23:56:20 +09:00
|
|
|
|
2022-11-28 03:20:54 +01:00
|
|
|
imara-diff = "0.1.0"
|
2021-07-02 10:54:50 -04:00
|
|
|
|
2021-12-25 16:10:46 +01:00
|
|
|
encoding_rs = "0.8"
|
2021-07-02 10:54:50 -04:00
|
|
|
|
2021-11-21 09:36:03 -07:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
2021-11-15 19:51:10 -07:00
|
|
|
|
2022-05-17 12:32:18 +09:00
|
|
|
etcetera = "0.4"
|
2022-10-23 16:02:58 -07:00
|
|
|
textwrap = "0.16.0"
|
2022-02-13 10:42:18 -06:00
|
|
|
|
2021-07-02 10:54:50 -04:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|