We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00917d3 commit ad8e698Copy full SHA for ad8e698
Cargo.toml
@@ -30,7 +30,7 @@ include = [
30
path = "bindings/rust/lib.rs"
31
32
[dependencies]
33
-tree-sitter = ">= 0.19, < 0.21"
+tree-sitter = "0.20"
34
35
[build-dependencies]
36
cc = "1.0"
bindings/rust/lib.rs
@@ -54,6 +54,9 @@ pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json");
54
/// The symbol tagging query for this language.
55
pub const TAGGING_QUERY: &'static str = include_str!("../../queries/tags.scm");
56
57
+/// The syntax highlighting query for this language.
58
+pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm");
59
+
60
#[cfg(test)]
61
mod tests {
62
#[test]
0 commit comments