atproto utils for zig
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

release: v0.2.18

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

+6 -1
+4
CHANGELOG.md
··· 1 1 # changelog 2 2 3 + ## 0.2.18 4 + 5 + - **feat**: export `HttpTransport` from root module — consumers can now use `zat.HttpTransport` for direct HTTP access without going through `XrpcClient` 6 + 3 7 ## 0.2.17 4 8 5 9 - **feat**: `Keypair.jwk()`, `Keypair.jwkThumbprint()`, `Keypair.uncompressedPublicKey()` — JWK export and RFC 7638 thumbprints for both P-256 and secp256k1
+1 -1
build.zig.zon
··· 1 1 .{ 2 2 .name = .zat, 3 - .version = "0.2.17", 3 + .version = "0.2.18", 4 4 .fingerprint = 0x8da9db57ee82fbe4, 5 5 .minimum_zig_version = "0.15.0", 6 6 .dependencies = .{
+1
src/root.zig
··· 17 17 pub const HandleResolver = @import("internal/identity/handle_resolver.zig").HandleResolver; 18 18 19 19 // xrpc 20 + pub const HttpTransport = @import("internal/xrpc/transport.zig").HttpTransport; 20 21 pub const XrpcClient = @import("internal/xrpc/xrpc.zig").XrpcClient; 21 22 22 23 // json helpers