helix-mods/helix-core/Cargo.toml

54 lines
1.2 KiB
TOML
Raw Normal View History

2020-05-20 11:14:51 +02:00
[package]
name = "helix-core"
2022-01-04 10:54:05 +01:00
version = "0.6.0"
2020-05-20 11:14:51 +02:00
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
2021-10-22 05:07:41 +02:00
edition = "2021"
2021-05-10 18:42:34 +02:00
license = "MPL-2.0"
2021-06-18 16:41:03 +02:00
description = "Helix editor core editing primitives"
categories = ["editor"]
repository = "https://github.com/helix-editor/helix"
homepage = "https://helix-editor.com"
include = ["src/**/*", "README.md"]
2020-05-20 11:14:51 +02:00
[features]
unicode-lines = ["ropey/unicode_lines"]
integration = []
2020-05-20 11:14:51 +02:00
[dependencies]
helix-loader = { version = "0.6", path = "../helix-loader" }
ropey = { version = "1.6.0", default-features = false, features = ["simd"] }
smallvec = "1.10"
smartstring = "1.0.1"
unicode-segmentation = "1.10"
2020-09-28 18:00:35 +02:00
unicode-width = "0.1"
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"
tree-sitter = "0.20"
once_cell = "1.17"
2021-06-19 13:26:52 +02:00
arc-swap = "1"
2020-09-28 18:00:35 +02:00
regex = "1"
bitflags = "2.2"
ahash = "0.8.3"
hashbrown = { version = "0.13.2", 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 17:36:03 +01:00
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
etcetera = "0.7"
2022-10-24 01:02:58 +02:00
textwrap = "0.16.0"
[dev-dependencies]
quickcheck = { version = "1", default-features = false }
indoc = "2.0.1"