2020-05-20 17:14:51 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2023-12-05 09:54:18 +08:00
|
|
|
description = "Helix editor core editing primitives"
|
|
|
|
include = ["src/**/*", "README.md"]
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 20:24:57 +08:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 09:54:18 +08:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2020-05-20 17:14:51 +08:00
|
|
|
|
2021-06-04 04:46:56 +08:00
|
|
|
[features]
|
2025-06-07 05:54:34 +08:00
|
|
|
unicode-lines = ["ropey/metric_lines_unicode"]
|
2022-01-18 08:04:40 +08:00
|
|
|
integration = []
|
2021-06-04 04:46:56 +08:00
|
|
|
|
2020-05-20 17:14:51 +08:00
|
|
|
[dependencies]
|
2024-01-17 02:59:48 +08:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
2023-12-05 09:54:18 +08:00
|
|
|
helix-loader = { path = "../helix-loader" }
|
2024-02-23 04:47:55 +08:00
|
|
|
helix-parsec = { path = "../helix-parsec" }
|
2022-02-16 21:57:20 +08:00
|
|
|
|
2025-01-31 08:51:34 +08:00
|
|
|
ropey.workspace = true
|
2025-06-07 05:54:34 +08:00
|
|
|
str_indices.workspace = true
|
2025-04-08 10:33:46 +08:00
|
|
|
smallvec = "1.15"
|
2022-03-29 08:07:07 +08:00
|
|
|
smartstring = "1.0.1"
|
2025-01-27 05:52:29 +08:00
|
|
|
unicode-segmentation.workspace = true
|
2024-07-28 00:32:22 +08:00
|
|
|
# unicode-width is changing width definitions
|
|
|
|
# that both break our logic and disagree with common
|
|
|
|
# width definitions in terminals, we need to replace it.
|
2024-07-28 00:59:36 +08:00
|
|
|
# For now lets lock the version to avoid rendering glitches
|
|
|
|
# when installing without `--locked`
|
2024-07-28 00:32:22 +08:00
|
|
|
unicode-width = "=0.1.12"
|
2024-11-21 01:41:07 +08:00
|
|
|
unicode-general-category = "1.0"
|
2024-04-08 08:46:32 +08:00
|
|
|
slotmap.workspace = true
|
2025-02-21 09:38:14 +08:00
|
|
|
tree-house.workspace = true
|
2025-03-11 21:29:38 +08:00
|
|
|
once_cell = "1.21"
|
2021-06-19 19:26:52 +08:00
|
|
|
arc-swap = "1"
|
2020-09-29 00:00:35 +08:00
|
|
|
regex = "1"
|
2025-01-14 07:26:31 +08:00
|
|
|
bitflags.workspace = true
|
2025-02-21 09:38:14 +08:00
|
|
|
foldhash.workspace = true
|
2024-11-26 08:06:54 +08:00
|
|
|
url = "2.5.4"
|
2021-03-25 14:26:25 +08:00
|
|
|
|
2021-10-23 20:52:18 +08:00
|
|
|
log = "0.4"
|
2024-02-23 04:47:55 +08:00
|
|
|
anyhow = "1.0"
|
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"
|
2024-02-13 00:48:45 +08:00
|
|
|
toml = "0.8"
|
2021-04-07 22:56:20 +08:00
|
|
|
|
2025-02-04 07:37:46 +08:00
|
|
|
imara-diff = "0.1.8"
|
2021-07-02 22:54:50 +08:00
|
|
|
|
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
|
|
|
|
2025-03-04 08:09:43 +08:00
|
|
|
textwrap = "0.16.2"
|
2022-02-14 00:42:18 +08:00
|
|
|
|
2023-08-30 12:26:21 +08:00
|
|
|
nucleo.workspace = true
|
2025-03-14 00:34:40 +08:00
|
|
|
parking_lot.workspace = true
|
2025-03-04 08:09:43 +08:00
|
|
|
globset = "0.4.16"
|
2025-06-07 06:39:24 +08:00
|
|
|
regex-cursor.workspace = true
|
2023-08-30 12:26:21 +08:00
|
|
|
|
2021-07-02 22:54:50 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|
2025-03-04 08:09:43 +08:00
|
|
|
indoc = "2.0.6"
|