-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 919 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "tree-sitter-hexdump"
description = "hexdump grammar for the tree-sitter parsing library"
version = "0.1.0"
authors = ["RubixDev"]
keywords = ["incremental", "parsing"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/rush-rs/tree-sitter-hexdump"
edition = "2018"
license = "MIT"
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
]
[features]
default = ["tree-sitter-standard"]
tree-sitter-standard = ["dep:tree-sitter-standard"]
tree-sitter-c2rust = ["dep:tree-sitter-c2rust", "dep:tree-sitter-wasm-build-tool"]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter-standard = { package = "tree-sitter", version = "0.20.9", optional = true }
tree-sitter-c2rust = { version = "0.20.9", optional = true }
[build-dependencies]
cc = "1.0"
tree-sitter-wasm-build-tool = { version = "0.1.0", optional = true }