mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:36:22 -04:00
0.23.2
This commit is contained in:
parent
78c41e3ced
commit
d97db6d635
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
12
Cargo.toml
12
Cargo.toml
|
|
@ -13,7 +13,7 @@ members = [
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.23.1"
|
version = "0.23.2"
|
||||||
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.74.1"
|
rust-version = "1.74.1"
|
||||||
|
|
@ -87,8 +87,8 @@ walkdir = "2.5.0"
|
||||||
wasmparser = "0.215.0"
|
wasmparser = "0.215.0"
|
||||||
webbrowser = "1.0.2"
|
webbrowser = "1.0.2"
|
||||||
|
|
||||||
tree-sitter = { version = "0.23.1", path = "./lib" }
|
tree-sitter = { version = "0.23.2", path = "./lib" }
|
||||||
tree-sitter-loader = { version = "0.23.1", path = "./cli/loader" }
|
tree-sitter-loader = { version = "0.23.2", path = "./cli/loader" }
|
||||||
tree-sitter-config = { version = "0.23.1", path = "./cli/config" }
|
tree-sitter-config = { version = "0.23.2", path = "./cli/config" }
|
||||||
tree-sitter-highlight = { version = "0.23.1", path = "./highlight" }
|
tree-sitter-highlight = { version = "0.23.2", path = "./highlight" }
|
||||||
tree-sitter-tags = { version = "0.23.1", path = "./tags" }
|
tree-sitter-tags = { version = "0.23.2", path = "./tags" }
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -2,7 +2,7 @@ ifeq ($(OS),Windows_NT)
|
||||||
$(error Windows is not supported)
|
$(error Windows is not supported)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
VERSION := 0.23.1
|
VERSION := 0.23.2
|
||||||
|
|
||||||
# install directory layout
|
# install directory layout
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
.{
|
.{
|
||||||
.name = "tree-sitter",
|
.name = "tree-sitter",
|
||||||
.version = "0.23.1",
|
.version = "0.23.2",
|
||||||
.paths = .{
|
.paths = .{
|
||||||
"build.zig",
|
"build.zig",
|
||||||
"build.zig.zon",
|
"build.zig.zon",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "tree-sitter-cli",
|
"name": "tree-sitter-cli",
|
||||||
"version": "0.23.1",
|
"version": "0.23.2",
|
||||||
"author": "Max Brunsfeld",
|
"author": "Max Brunsfeld",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ wasm = ["wasmtime-c-api"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
regex = { version = "1.10.6", default-features = false, features = ["unicode"] }
|
regex = { version = "1.10.6", default-features = false, features = ["unicode"] }
|
||||||
regex-syntax = { version = "0.8.4", default-features = false }
|
regex-syntax = { version = "0.8.4", default-features = false }
|
||||||
tree-sitter-language = { version = "0.1", path = "language" }
|
tree-sitter-language = { version = "0.1.1", path = "language" }
|
||||||
|
|
||||||
[dependencies.wasmtime-c-api]
|
[dependencies.wasmtime-c-api]
|
||||||
version = "24.0.0"
|
version = "24.0.0"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "web-tree-sitter",
|
"name": "web-tree-sitter",
|
||||||
"version": "0.23.1",
|
"version": "0.23.2",
|
||||||
"description": "Tree-sitter bindings for the web",
|
"description": "Tree-sitter bindings for the web",
|
||||||
"main": "tree-sitter.js",
|
"main": "tree-sitter.js",
|
||||||
"types": "tree-sitter-web.d.ts",
|
"types": "tree-sitter-web.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tree-sitter-language"
|
name = "tree-sitter-language"
|
||||||
description = "The tree-sitter Language type, used by the library and by language implementations"
|
description = "The tree-sitter Language type, used by the library and by language implementations"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue