diff --git a/Cargo.lock b/Cargo.lock index 9595ccf..8d8939d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -561,7 +561,7 @@ dependencies = [ [[package]] name = "rust-sitter" -version = "0.3.1" +version = "0.3.2" dependencies = [ "insta", "rust-sitter-macro", @@ -572,7 +572,7 @@ dependencies = [ [[package]] name = "rust-sitter-common" -version = "0.3.1" +version = "0.3.2" dependencies = [ "quote", "syn", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "rust-sitter-example" -version = "0.3.1" +version = "0.3.2" dependencies = [ "codemap", "codemap-diagnostic", @@ -592,7 +592,7 @@ dependencies = [ [[package]] name = "rust-sitter-macro" -version = "0.3.1" +version = "0.3.2" dependencies = [ "insta", "proc-macro2", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "rust-sitter-tool" -version = "0.3.1" +version = "0.3.2" dependencies = [ "cc", "insta", diff --git a/README.md b/README.md index fb1e219..6b21173 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.3.1" +rust-sitter = "0.3.2" [build-dependencies] -rust-sitter-tool = "0.3.1" +rust-sitter-tool = "0.3.2" ``` _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 90adc80..fc32f57 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.3.1" +version = "0.3.2" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" diff --git a/example/Cargo.toml b/example/Cargo.toml index 89e0b88..3dd0fe8 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-sitter-example" -version = "0.3.1" +version = "0.3.2" authors = ["Shadaj Laddad "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index f61e80c..048fb3e 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.3.1" +version = "0.3.2" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" @@ -18,7 +18,7 @@ path = "src/lib.rs" syn = { version = "1.0", features = [ "full", "extra-traits" ] } quote = "1.0" proc-macro2 = "1.0.27" -rust-sitter-common = { version= "0.3.1", path = "../common" } +rust-sitter-common = { version= "0.3.2", path = "../common" } [dev-dependencies] insta = "1.7.1" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 5b16e55..2012815 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.3.1" +version = "0.3.2" 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.20.9", optional = true } tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.20.9", optional = true } -rust-sitter-macro = { version = "0.3.1", path = "../macro" } +rust-sitter-macro = { version = "0.3.2", path = "../macro" } [dev-dependencies] insta = "1.7.1" diff --git a/tool/Cargo.toml b/tool/Cargo.toml index 8acc30c..1c1a8f5 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.3.1" +version = "0.3.2" authors = ["Shadaj Laddad "] license = "MIT" edition = "2021" @@ -19,7 +19,7 @@ syn = { version = "1.0", features = [ "full", "extra-traits" ] } syn-inline-mod = "0.5.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1", features = ["preserve_order"] } -rust-sitter-common = { version = "0.3.1", path = "../common" } +rust-sitter-common = { version = "0.3.2", path = "../common" } tempfile = { version = "3.0.0", optional = true } tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }