Skip to content

Commit b62a295

Browse files
resolved issues with rust bindings
1 parent 7861a48 commit b62a295

File tree

4 files changed

+75
-4
lines changed

4 files changed

+75
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ pubspec.lock
1818
*.dll
1919
*.dylib
2020
doc
21-
.vscode
21+
.vscode
22+
target

Cargo.lock

+71
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/rust/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ fn main() {
1313
// If your language uses an external scanner written in C,
1414
// then include this block of code:
1515

16-
/*
16+
1717
let scanner_path = src_dir.join("scanner.c");
1818
c_config.file(&scanner_path);
1919
println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());
20-
*/
20+
2121

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

tree_sitter/tree-sitter

Submodule tree-sitter deleted from be79158

0 commit comments

Comments
 (0)