forked from skmendez/tree-sitter-traversal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (26 loc) · 797 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 = "baz-tree-sitter-traversal"
version = "0.1.4"
edition = "2021"
rust-version = "1.66" # MSRV
license = "MIT"
repository = "https://github.com/baz-scm/tree-sitter-traversal"
documentation = "https://docs.rs/tree-sitter-traversal/"
authors = ["Baz"]
readme = "README.md"
description = "Traversal of tree-sitter Trees and any arbitrary tree with a TreeCursor-like interface"
keywords = ["tree-sitter", "traverse", "traversal", "tree"]
categories = ["algorithms", "data-structures", "no-std"]
[lib]
name = "tree_sitter_traversal"
[package.metadata.release]
allow-branch = ["HEAD"]
push = false
tag = false
[dependencies]
tree-sitter = {version=">= 0.22", optional=true}
[dev-dependencies]
tree-sitter-rust = "0.21"
tree-sitter-cpp = "0.22"
[features]
default = ["tree-sitter"]