2020-05-20 11:14:51 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2023-12-05 02:54:18 +01:00
|
|
|
description = "Helix editor core editing primitives"
|
|
|
|
include = ["src/**/*", "README.md"]
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 13:24:57 +01:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 02:54:18 +01:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2020-05-20 11:14:51 +02:00
|
|
|
|
2021-06-03 22:46:56 +02:00
|
|
|
[features]
|
2022-03-16 09:56:53 +01:00
|
|
|
unicode-lines = ["ropey/unicode_lines"]
|
2022-01-18 01:04:40 +01:00
|
|
|
integration = []
|
2021-06-03 22:46:56 +02:00
|
|
|
|
2020-05-20 11:14:51 +02:00
|
|
|
[dependencies]
|
2024-01-16 19:59:48 +01:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
2023-12-05 02:54:18 +01:00
|
|
|
helix-loader = { path = "../helix-loader" }
|
2022-02-16 14:57:20 +01:00
|
|
|
|
2023-10-24 07:13:46 +02:00
|
|
|
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
|
2024-01-23 15:19:36 +01:00
|
|
|
smallvec = "1.13"
|
2022-03-29 02:07:07 +02:00
|
|
|
smartstring = "1.0.1"
|
2024-02-13 01:57:37 +01:00
|
|
|
unicode-segmentation = "1.11"
|
2020-09-28 18:00:35 +02:00
|
|
|
unicode-width = "0.1"
|
2022-09-27 01:36:40 +02:00
|
|
|
unicode-general-category = "0.6"
|
2020-05-20 11:14:51 +02:00
|
|
|
# slab = "0.4.2"
|
2021-11-06 16:21:03 +01:00
|
|
|
slotmap = "1.0"
|
2023-07-27 04:50:40 +02:00
|
|
|
tree-sitter.workspace = true
|
2023-12-12 14:46:11 +01:00
|
|
|
once_cell = "1.19"
|
2021-06-19 13:26:52 +02:00
|
|
|
arc-swap = "1"
|
2020-09-28 18:00:35 +02:00
|
|
|
regex = "1"
|
2023-08-15 02:33:22 +02:00
|
|
|
bitflags = "2.4"
|
2024-01-11 14:13:39 +01:00
|
|
|
ahash = "0.8.6"
|
2023-11-28 01:53:53 +01:00
|
|
|
hashbrown = { version = "0.14.3", features = ["raw"] }
|
2023-03-30 18:21:40 +02:00
|
|
|
dunce = "1.0"
|
2021-03-25 07:26:25 +01:00
|
|
|
|
2021-10-23 14:52:18 +02:00
|
|
|
log = "0.4"
|
2021-03-25 07:26:25 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-10-08 04:14:12 +02:00
|
|
|
serde_json = "1.0"
|
2024-02-12 17:48:45 +01:00
|
|
|
toml = "0.8"
|
2021-04-07 16:56:20 +02:00
|
|
|
|
2022-11-28 03:20:54 +01:00
|
|
|
imara-diff = "0.1.0"
|
2021-07-02 16:54:50 +02:00
|
|
|
|
2021-12-25 16:10:46 +01:00
|
|
|
encoding_rs = "0.8"
|
2021-07-02 16:54:50 +02:00
|
|
|
|
2021-11-21 17:36:03 +01:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
2021-11-16 03:51:10 +01:00
|
|
|
|
2023-05-02 02:57:45 +02:00
|
|
|
etcetera = "0.8"
|
2022-10-24 01:02:58 +02:00
|
|
|
textwrap = "0.16.0"
|
2022-02-13 17:42:18 +01:00
|
|
|
|
2023-08-30 06:26:21 +02:00
|
|
|
nucleo.workspace = true
|
|
|
|
parking_lot = "0.12"
|
2024-02-12 02:35:25 +01:00
|
|
|
globset = "0.4.14"
|
2023-08-30 06:26:21 +02:00
|
|
|
|
2021-07-02 16:54:50 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|
2023-09-19 04:29:46 +02:00
|
|
|
indoc = "2.0.4"
|