2020-09-09 07:41:12 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-syntax"
|
2021-06-27 06:27:21 +02:00
|
|
|
version = "0.3.0"
|
2020-09-09 07:41:12 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
2021-05-10 18:42:34 +02:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 15:53:29 +02:00
|
|
|
description = "Tree-sitter grammars support"
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
|
|
|
include = ["src/**/*", "languages/**/*", "build.rs", "!**/docs/**/*", "!**/test/**/*", "!**/examples/**/*", "!**/build/**/*"]
|
2020-09-09 07:41:12 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-04-08 16:18:25 +02:00
|
|
|
tree-sitter = "0.19"
|
2021-07-11 12:36:45 +02:00
|
|
|
libloading = "0.7"
|
|
|
|
anyhow = "1"
|
2020-09-09 07:41:12 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-07-11 12:36:45 +02:00
|
|
|
cc = { version = "1" }
|
2021-02-24 05:13:49 +01:00
|
|
|
threadpool = { version = "1.0" }
|
2021-07-11 12:36:45 +02:00
|
|
|
anyhow = "1"
|