diff options
Diffstat (limited to 'helix-syntax/Cargo.toml')
-rw-r--r-- | helix-syntax/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/helix-syntax/Cargo.toml b/helix-syntax/Cargo.toml new file mode 100644 index 00000000..ef8ed863 --- /dev/null +++ b/helix-syntax/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "helix-syntax" +version = "0.1.0" +authors = ["Blaž Hrastnik <blaz@mxxn.io>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tree-sitter = "0.16" +enum-iterator = "0.6" + +[build-dependencies] +cc = { version = "1", features = ["parallel"] } |