build: unify crate versions via workspace

This commit is contained in:
Amaan Qureshi 2024-02-24 17:25:53 -05:00
parent f707ab5b53
commit 068e29c265
8 changed files with 7 additions and 6 deletions

BIN
Cargo.lock generated

Binary file not shown.

View file

@ -4,6 +4,7 @@ members = ["cli", "cli/config", "cli/loader", "lib", "tags", "highlight"]
resolver = "2"
[workspace.package]
version = "0.21.0"
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
edition = "2021"
rust-version = "1.70"

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-cli"
version.workspace = true
description = "CLI tool for developing, testing, and using Tree-sitter parsers"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-config"
version.workspace = true
description = "User configuration of tree-sitter's command line programs"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-loader"
version.workspace = true
description = "Locates, builds, and loads tree-sitter grammars at runtime"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-highlight"
version.workspace = true
description = "Library for performing syntax highlighting with Tree-sitter"
version = "0.21.0"
authors = [
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
"Tim Clem <timothy.clem@gmail.com>",

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter"
version.workspace = true
description = "Rust bindings to the Tree-sitter parsing library"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-tags"
version.workspace = true
description = "Library for extracting tag information"
version = "0.21.0"
authors = [
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
"Patrick Thomson <patrickt@github.com>",