AtlatestRepositorysigil-wire
sigil-wire / treepackage.sgl
1
;;; sigil-wire - Typed binary codec for Sigil values2
;;;3
;;; A length-prefixed, typed binary serialization of the Sigil value model,4
;;; decoded in one O(n) forward pass with string/bytevector bodies memcpy'd.5
;;; The transport-neutral wire format for bulk structured payloads: the binary6
;;; sibling to sigil-json.8
(package9
name: "sigil-wire"10
version: "0.1.0"11
sigil: "^0.17"12
description: "Typed binary codec for Sigil values"13
url: "https://codeberg.org/sigil/sigil-wire"14
license: "BSD-3-Clause"15
authors: (list "David Wilson <[email protected]>")17
dependencies: (list18
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.17")))