Skip to content

Commit 70700ac

Browse files
committed
chore: Release
1 parent 80d4f7a commit 70700ac

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Rust Sitter makes it easy to create efficient parsers in Rust by leveraging the
77
First, add Rust/Tree Sitter to your `Cargo.toml`:
88
```toml
99
[dependencies]
10-
rust-sitter = "0.3.2"
10+
rust-sitter = "0.3.3"
1111

1212
[build-dependencies]
13-
rust-sitter-tool = "0.3.2"
13+
rust-sitter-tool = "0.3.3"
1414
```
1515

1616
_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_

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-common"
33
description = "Shared logic for the Rust Sitter macro and tool"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.3.2"
6+
version = "0.3.3"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-sitter-example"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Shadaj Laddad <[email protected]>"]
55
edition = "2021"
66
publish = false

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-macro"
33
description = "Procedural macros for Rust Sitter"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.3.2"
6+
version = "0.3.3"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -18,7 +18,7 @@ path = "src/lib.rs"
1818
syn = { version = "1.0", features = [ "full", "extra-traits" ] }
1919
quote = "1.0"
2020
proc-macro2 = "1.0.27"
21-
rust-sitter-common = { version= "0.3.2", path = "../common" }
21+
rust-sitter-common = { version= "0.3.3", path = "../common" }
2222

2323
[dev-dependencies]
2424
insta = "1.7.1"

runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter"
33
description = "A package for defining tree-sitter grammars alongside Rust logic"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.3.2"
6+
version = "0.3.3"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -21,7 +21,7 @@ tree-sitter-standard = ["tree-sitter-runtime-standard"]
2121
[dependencies]
2222
tree-sitter-runtime-c2rust = { package = "tree-sitter-c2rust", version = "0.20.9", optional = true }
2323
tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.20.9", optional = true }
24-
rust-sitter-macro = { version = "0.3.2", path = "../macro" }
24+
rust-sitter-macro = { version = "0.3.3", path = "../macro" }
2525

2626
[dev-dependencies]
2727
insta = "1.7.1"

tool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-tool"
33
description = "The external tool for Rust Sitter that extracts grammars from Rust definitions"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.3.2"
6+
version = "0.3.3"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
license = "MIT"
99
edition = "2021"
@@ -19,7 +19,7 @@ syn = { version = "1.0", features = [ "full", "extra-traits" ] }
1919
syn-inline-mod = "0.5.0"
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = { version = "1", features = ["preserve_order"] }
22-
rust-sitter-common = { version = "0.3.2", path = "../common" }
22+
rust-sitter-common = { version = "0.3.3", path = "../common" }
2323

2424
tempfile = { version = "3.0.0", optional = true }
2525
tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }

0 commit comments

Comments
 (0)