diff --git a/Cargo.lock b/Cargo.lock index be6278c..edb9b15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,7 +311,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "rust-sitter" -version = "0.4.2" +version = "0.4.3" dependencies = [ "insta", "rust-sitter-macro", @@ -322,7 +322,7 @@ dependencies = [ [[package]] name = "rust-sitter-common" -version = "0.4.2" +version = "0.4.3" dependencies = [ "quote", "syn 2.0.75", @@ -330,7 +330,7 @@ dependencies = [ [[package]] name = "rust-sitter-example" -version = "0.4.2" +version = "0.4.3" dependencies = [ "codemap", "codemap-diagnostic", @@ -342,7 +342,7 @@ dependencies = [ [[package]] name = "rust-sitter-macro" -version = "0.4.2" +version = "0.4.3" dependencies = [ "insta", "proc-macro2", @@ -354,7 +354,7 @@ dependencies = [ [[package]] name = "rust-sitter-tool" -version = "0.4.2" +version = "0.4.3" dependencies = [ "cc", "insta", diff --git a/README.md b/README.md index b914aa7..4e077fb 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ Rust Sitter makes it easy to create efficient parsers in Rust by leveraging the First, add Rust/Tree Sitter to your `Cargo.toml`: ```toml [dependencies] -rust-sitter = "0.4.2" +rust-sitter = "0.4.3" [build-dependencies] -rust-sitter-tool = "0.4.2" +rust-sitter-tool = "0.4.3" ``` _Note: By default, Rust Sitter uses a fork of Tree Sitter with a pure-Rust runtime to support `wasm32-unknown-unknown`. To use the standard C runtime instead, disable default features and enable the `tree-sitter-standard` feature_ diff --git a/common/Cargo.toml b/common/Cargo.toml index 2da7f89..f175b76 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -3,7 +3,7 @@ name = "rust-sitter-common" description = "Shared logic for the Rust Sitter macro and tool" readme = "../README.md" repository = "https://github.com/hydro-project/rust-sitter" -version = "0.4.2" +version = "0.4.3" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" diff --git a/example/Cargo.toml b/example/Cargo.toml index 6c942c8..cd5d51e 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-sitter-example" -version = "0.4.2" +version = "0.4.3" authors = ["Shadaj Laddad "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index c395561..0da0241 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -3,7 +3,7 @@ name = "rust-sitter-macro" description = "Procedural macros for Rust Sitter" readme = "../README.md" repository = "https://github.com/hydro-project/rust-sitter" -version = "0.4.2" +version = "0.4.3" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" @@ -18,7 +18,7 @@ path = "src/lib.rs" syn = { version = "2", features = [ "full", "extra-traits" ] } quote = "1" proc-macro2 = "1" -rust-sitter-common = { version= "0.4.2", path = "../common" } +rust-sitter-common = { version= "0.4.3", path = "../common" } [dev-dependencies] insta = "1.39" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index c98a21d..9bf30fd 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -3,7 +3,7 @@ name = "rust-sitter" description = "A package for defining tree-sitter grammars alongside Rust logic" readme = "../README.md" repository = "https://github.com/hydro-project/rust-sitter" -version = "0.4.2" +version = "0.4.3" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" @@ -21,7 +21,7 @@ tree-sitter-standard = ["tree-sitter-runtime-standard"] [dependencies] tree-sitter-runtime-c2rust = { package = "tree-sitter-c2rust", version = "0.24.3", optional = true } tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.24.3", optional = true } -rust-sitter-macro = { version = "0.4.2", path = "../macro" } +rust-sitter-macro = { version = "0.4.3", path = "../macro" } [dev-dependencies] insta = "1.39" diff --git a/tool/Cargo.toml b/tool/Cargo.toml index acc5c59..86ed360 100644 --- a/tool/Cargo.toml +++ b/tool/Cargo.toml @@ -3,7 +3,7 @@ name = "rust-sitter-tool" description = "The external tool for Rust Sitter that extracts grammars from Rust definitions" readme = "../README.md" repository = "https://github.com/hydro-project/rust-sitter" -version = "0.4.2" +version = "0.4.3" authors = ["Shadaj Laddad "] license = "MIT" edition = "2021" @@ -19,7 +19,7 @@ syn = { version = "2", features = [ "full", "extra-traits" ] } syn-inline-mod = "0.6" serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["preserve_order"] } -rust-sitter-common = { version = "0.4.2", path = "../common" } +rust-sitter-common = { version = "0.4.3", path = "../common" } tempfile = { version = "3", optional = true } tree-sitter = { version = "0.24.3", optional = true }