helix/helix-core/Cargo.toml

40 lines
835 B
TOML
Raw Normal View History

2020-05-20 18:14:51 +09:00
[package]
name = "helix-core"
2021-08-14 13:31:23 +09:00
version = "0.4.1"
2020-05-20 18:14:51 +09:00
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
2021-05-11 01:42:34 +09:00
license = "MPL-2.0"
2021-06-18 10:41:03 -04: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 18:14:51 +09:00
[features]
2020-05-20 18:14:51 +09:00
[dependencies]
2021-08-13 01:28:11 +09:00
helix-syntax = { version = "0.4", path = "../helix-syntax" }
2020-09-17 14:57:49 +09:00
2021-06-18 08:55:34 -04:00
ropey = "1.3"
smallvec = "1.7"
tendril = "0.4.2"
unicode-segmentation = "1.8"
2020-09-29 01:00:35 +09:00
unicode-width = "0.1"
unicode-general-category = "0.4"
2020-05-20 18:14:51 +09:00
# slab = "0.4.2"
tree-sitter = "0.20"
once_cell = "1.8"
2021-06-19 13:26:52 +02:00
arc-swap = "1"
2020-09-29 01:00:35 +09:00
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
similar = "2.1"
etcetera = "0.3"
[dev-dependencies]
quickcheck = { version = "1", default-features = false }