Skip to content

Commit

Permalink
Fix rust test and bump v0.0.2 for CI release test.
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Mar 21, 2024
1 parent 5e29bc3 commit 56a8f67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 24 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/fuzz.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-pest"
description = "pest grammar for the tree-sitter parsing library"
version = "0.0.2-alpha.0"
version = "0.0.2"
keywords = ["incremental", "parsing", "pest"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-pest"
Expand Down
10 changes: 5 additions & 5 deletions bindings/rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ fn main() {
// If your language uses an external scanner written in C,
// then include this block of code:

let scanner_path = src_dir.join("scanner.c");
c_config.file(&scanner_path);
println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());
// let scanner_path = src_dir.join("scanner.c");
// c_config.file(&scanner_path);
// println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());

// c_config.compile("parser");
// println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());
c_config.compile("parser");
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());

// If your language uses an external scanner written in C++,
// then include this block of code:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-pest",
"version": "0.0.1",
"version": "0.0.2",
"description": "Pest grammar for tree-sitter",
"main": "bindings/node",
"repository": {
Expand Down

0 comments on commit 56a8f67

Please sign in to comment.