elixir-nimble-parsec 1.4.0-1 source package in Ubuntu

Changelog

elixir-nimble-parsec (1.4.0-1) unstable; urgency=medium

  * New upstream release.

 -- Sergei Golovan <email address hidden>  Thu, 29 Feb 2024 10:49:58 +0300

Upload details

Uploaded by:
Debian Erlang Packagers
Uploaded to:
Sid
Original maintainer:
Debian Erlang Packagers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
elixir-nimble-parsec_1.4.0-1.dsc 2.1 KiB b539c1bb1d0b5a37147e2af01b8b46ba3693dc95350696ad22b319e015dc1a18
elixir-nimble-parsec_1.4.0.orig.tar.xz 34.7 KiB 5670f0775abb3c4915cade637e621dbec8141b7004f3de8636de5b4dea393c2b
elixir-nimble-parsec_1.4.0-1.debian.tar.xz 2.2 KiB 483dcf5e77fe88540ce6932f0a9ef8d05e715a849ff978b362973979447e8c64

Available diffs

No changes file available.

Binary packages built by this source

elixir-nimble-parsec: simple and fast library for text-based parser combinators

 Simple and fast Elixir library for text-based parser combinators.
 .
 Combinators are built during runtime and compiled into multiple
 clauses with binary matching. This provides benefits of performance,
 composability by not relying on macros, no runtime dependency on
 NimbleParsec, and no "use" footprints on your modules.
 .
 The goal of this library is to focus on a set of primitives for
 writing efficient parser combinators. The composition aspect means
 you should be able to use those primitives to implement higher level
 combinators.
 .
 Note this library does not handle low-level binary parsing. In such
 cases, Elixir's bitstring syntax is recommended.