helix/helix-core/Cargo.toml

58 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2020-05-20 12:14:51 +03:00
[package]
name = "helix-core"
description = "Helix editor core editing primitives"
include = ["src/**/*", "README.md"]
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
categories.workspace = true
repository.workspace = true
homepage.workspace = true
2020-05-20 12:14:51 +03:00
[features]
unicode-lines = ["ropey/unicode_lines"]
integration = []
2020-05-20 12:14:51 +03:00
[dependencies]
helix-loader = { path = "../helix-loader" }
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
smallvec = "1.11"
smartstring = "1.0.1"
unicode-segmentation = "1.10"
2020-09-28 19:00:35 +03:00
unicode-width = "0.1"
unicode-general-category = "0.6"
2020-05-20 12:14:51 +03:00
# slab = "0.4.2"
2021-11-06 18:21:03 +03:00
slotmap = "1.0"
tree-sitter.workspace = true
once_cell = "1.19"
2021-06-19 14:26:52 +03:00
arc-swap = "1"
2020-09-28 19:00:35 +03:00
regex = "1"
bitflags = "2.4"
ahash = "0.8.6"
hashbrown = { version = "0.14.3", features = ["raw"] }
dunce = "1.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.7"
imara-diff = "0.1.0"
encoding_rs = "0.8"
2021-11-21 19:36:03 +03:00
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
etcetera = "0.8"
2022-10-24 02:02:58 +03:00
textwrap = "0.16.0"
nucleo.workspace = true
parking_lot = "0.12"
[dev-dependencies]
quickcheck = { version = "1", default-features = false }
indoc = "2.0.4"