From d200fdd5816c7c9e978d0c3f0ace03441afa7981 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 14 Jul 2025 13:12:40 +0200 Subject: [PATCH] feat: update cbor to add support for allocating extraction of arrays --- src/ts_serializer.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ts_serializer.zig b/src/ts_serializer.zig index 973c1f7..90c5865 100644 --- a/src/ts_serializer.zig +++ b/src/ts_serializer.zig @@ -280,6 +280,7 @@ pub const DeserializeError = error{ JsonIncompatibleType, InvalidQueryCbor, NotAnObject, + BadArrayAllocExtract, }; pub fn fromCbor(cb: []const u8, allocator: std.mem.Allocator) DeserializeError!struct { *TSQuery, *std.heap.ArenaAllocator } {