diff --git a/lib/binding_rust/lib.rs b/lib/binding_rust/lib.rs index efac4f1a..8e6b091a 100644 --- a/lib/binding_rust/lib.rs +++ b/lib/binding_rust/lib.rs @@ -2644,6 +2644,9 @@ impl error::Error for QueryError {} unsafe impl Send for Language {} unsafe impl Sync for Language {} +unsafe impl Send for Node<'_> {} +unsafe impl Sync for Node<'_> {} + unsafe impl Send for Parser {} unsafe impl Sync for Parser {} @@ -2655,3 +2658,6 @@ unsafe impl Sync for QueryCursor {} unsafe impl Send for Tree {} unsafe impl Sync for Tree {} + +unsafe impl Send for TreeCursor<'_> {} +unsafe impl Sync for TreeCursor<'_> {}