Decode the protobuf wire format in Gleam!
3

Configure Feed

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

Fix internal module namespacing

Gavin Morrow (Sep 29, 2025, 10:00 AM EDT) 8d19ad11 c0f36a76

+3 -3
+1 -1
src/decoders.gleam
··· 8 8 import protobin.{ 9 9 type BytePos, type DecodeResult, type ValueParser, Parsed, parse, parse_varint, 10 10 } 11 - import internal/util 11 + import protobin/internal/util 12 12 13 13 /// Decode a repeated field that may be either packed or expanded. 14 14 ///
src/internal/util.gleam src/protobin/internal/util.gleam
src/internal/wire_type.gleam src/protobin/internal/wire_type.gleam
+2 -2
src/protobin.gleam
··· 7 7 import gleam/option 8 8 import gleam/result 9 9 10 - import internal/util 11 - import internal/wire_type.{type WireType} 10 + import protobin/internal/util 11 + import protobin/internal/wire_type.{type WireType} 12 12 13 13 pub fn parse( 14 14 from bits: BitArray,