2020-09-09 14:41:12 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-syntax"
|
2021-06-27 13:27:21 +09:00
|
|
|
version = "0.3.0"
|
2020-09-09 14:41:12 +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 09:53:29 -04: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 14:41:12 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2021-04-08 23:18:25 +09:00
|
|
|
tree-sitter = "0.19"
|
2021-03-25 15:26:25 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-09-09 14:41:12 +09:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = { version = "1", features = ["parallel"] }
|
2021-02-24 13:13:49 +09:00
|
|
|
threadpool = { version = "1.0" }
|