2020-05-20 18:14:51 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-core"
|
2023-12-04 20:54:18 -05:00
|
|
|
description = "Helix editor core editing primitives"
|
|
|
|
include = ["src/**/*", "README.md"]
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 21:24:57 +09:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-04 20:54:18 -05:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
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]
|
2024-01-16 13:59:48 -05:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
2023-12-04 20:54:18 -05:00
|
|
|
helix-loader = { path = "../helix-loader" }
|
2024-02-22 21:47:55 +01:00
|
|
|
helix-parsec = { path = "../helix-parsec" }
|
2022-02-16 07:57:20 -06:00
|
|
|
|
2023-10-24 14:13:46 +09:00
|
|
|
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
|
2024-01-23 23:19:36 +09:00
|
|
|
smallvec = "1.13"
|
2022-03-29 09:07:07 +09:00
|
|
|
smartstring = "1.0.1"
|
2024-09-17 11:32:26 +09:00
|
|
|
unicode-segmentation = "1.12"
|
2024-07-27 18:32:22 +02: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-27 18:59:36 +02:00
|
|
|
# For now lets lock the version to avoid rendering glitches
|
|
|
|
# when installing without `--locked`
|
2024-07-27 18:32:22 +02:00
|
|
|
unicode-width = "=0.1.12"
|
2024-11-20 11:41:07 -06:00
|
|
|
unicode-general-category = "1.0"
|
2024-04-08 02:46:32 +02:00
|
|
|
slotmap.workspace = true
|
2023-07-27 04:50:40 +02:00
|
|
|
tree-sitter.workspace = true
|
2024-10-01 10:05:07 +09:00
|
|
|
once_cell = "1.20"
|
2021-06-19 13:26:52 +02:00
|
|
|
arc-swap = "1"
|
2020-09-29 01:00:35 +09:00
|
|
|
regex = "1"
|
2024-06-25 23:22:20 +09:00
|
|
|
bitflags = "2.6"
|
2024-03-06 11:09:13 +09:00
|
|
|
ahash = "0.8.11"
|
2024-05-07 21:43:40 +02:00
|
|
|
hashbrown = { version = "0.14.5", features = ["raw"] }
|
2023-03-31 03:21:40 +11:00
|
|
|
dunce = "1.0"
|
2024-11-25 18:06:54 -06:00
|
|
|
url = "2.5.4"
|
2021-03-25 15:26:25 +09:00
|
|
|
|
2021-10-23 08:52:18 -04:00
|
|
|
log = "0.4"
|
2024-02-22 21:47:55 +01:00
|
|
|
anyhow = "1.0"
|
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"
|
2024-02-13 01:48:45 +09:00
|
|
|
toml = "0.8"
|
2021-04-07 23:56:20 +09:00
|
|
|
|
2024-07-29 21:10:47 -05:00
|
|
|
imara-diff = "0.1.7"
|
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
|
|
|
|
2023-05-02 09:57:45 +09:00
|
|
|
etcetera = "0.8"
|
2024-02-20 17:07:16 +01:00
|
|
|
textwrap = "0.16.1"
|
2022-02-13 10:42:18 -06:00
|
|
|
|
2023-08-30 06:26:21 +02:00
|
|
|
nucleo.workspace = true
|
|
|
|
parking_lot = "0.12"
|
2024-09-10 22:59:03 +09:00
|
|
|
globset = "0.4.15"
|
2024-02-22 21:47:55 +01:00
|
|
|
regex-cursor = "0.1.4"
|
2023-08-30 06:26:21 +02:00
|
|
|
|
2021-07-02 10:54:50 -04:00
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = { version = "1", default-features = false }
|
2024-03-26 12:55:58 +09:00
|
|
|
indoc = "2.0.5"
|