mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:26:23 -04:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "tree-sitter-generate"
|
|
version.workspace = true
|
|
description = "Library for generating C source code from a tree-sitter grammar"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/tree-sitter-generate"
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
path = "src/generate.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = [ "qjs-rt" ]
|
|
load = [ "dep:semver" ]
|
|
qjs-rt = [ "load", "rquickjs", "pathdiff" ]
|
|
|
|
[dependencies]
|
|
bitflags = "2.11.1"
|
|
dunce = "1.0.5"
|
|
hashbrown.workspace = true
|
|
indexmap.workspace = true
|
|
log.workspace = true
|
|
pathdiff = { optional = true, version = "0.2.3" }
|
|
regex.workspace = true
|
|
regex-syntax.workspace = true
|
|
rquickjs = { features = [ "bindgen", "loader", "macro", "phf" ], optional = true, version = "0.13" }
|
|
rustc-hash.workspace = true
|
|
semver = { optional = true, workspace = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
topological-sort.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|