atproto tools in zig zat.dev
sdk atproto zig

docs: reference upstream zig issue for gzip workaround

https://github.com/ziglang/zig/issues/25021

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Changed files
+2 -2
src
internal
+2 -2
src/internal/xrpc.zig
··· 85 85 var aw: std.Io.Writer.Allocating = .init(self.allocator); 86 86 defer aw.deinit(); 87 87 88 - // build extra headers for auth 89 - // disable gzip to work around deflate decompressor panic on x86_64-linux 88 + // disable gzip: zig stdlib flate.Decompress panics on certain streams 89 + // https://github.com/ziglang/zig/issues/25021 90 90 var extra_headers: std.http.Client.Request.Headers = .{ 91 91 .accept_encoding = .{ .override = "identity" }, 92 92 };