1
0
Fork 0
mirror of https://github.com/pnx/tree-sitter-dotenv synced 2026-08-26 04:08:11 +02:00

bindings: rust: include scanner and highlights queries.

This commit is contained in:
Henrik Hautakoski 2024-12-12 22:15:54 +01:00
parent 0c2b73e65d
commit 5cc2cc1b89
2 changed files with 1 additions and 4 deletions

View file

@ -11,12 +11,9 @@ fn main() {
c_config.file(&parser_path);
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());
// NOTE: if your language uses an external scanner, uncomment this block:
/*
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("tree-sitter-dotenv");
}