tree-sitter.tree-sitter/crates/generate/Cargo.toml
Will Lillis 1c833e362e
Some checks failed
CI / sanitize (push) Failing after 15s
CI / build (push) Failing after 16s
CI / check-wasm-stdlib (push) Failing after 15s
CI / checks (push) Has been cancelled
fix(rust): address manual-readme lint
Cargo automatically resolves this, so the `Cargo.toml` entries are
redundant.

(cherry picked from commit f430449ab9)
2026-09-04 15:11:34 -04:00

50 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.12.2" }
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