From 810c7bb6f60903da7df44cd0d5dd4911c48fef53 Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 18 Oct 2023 18:18:12 -0400 Subject: [PATCH] Fix path --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6cbb42d..58ff61a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,7 +34,7 @@ pub fn language() -> Language { /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../tree-sitter-dust/src/node-types.json"); +pub const NODE_TYPES: &'static str = include_str!("../../tree-sitter-dust/src/node-types.json"); // Uncomment these to include any queries that this grammar contains