* Move all rust crates (except lib) into crates dir, w/o nesting * Remove stale path from .gitattributes * Rename lib.rs files for easier navigation * Rename mod.rs file for easier navigation * Fix emscripten-version path * Fix fixtures dir paths * Use the default rustfmt settings * Don't use nightly on CI
39 lines
870 B
TOML
39 lines
870 B
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
|
|
readme = "README.md"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
path = "src/generate.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
heck.workspace = true
|
|
indexmap.workspace = true
|
|
indoc.workspace = true
|
|
log.workspace = true
|
|
regex.workspace = true
|
|
regex-syntax.workspace = true
|
|
rustc-hash.workspace = true
|
|
semver.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smallbitvec.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
url.workspace = true
|