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

Changelog

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

  * No-change rebuild for CVE-2024-3094

 -- William Grant <email address hidden>  Mon, 01 Apr 2024 16:47:35 +1100

Upload details

Uploaded by:
William Grant
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Downloads

File Size SHA-256 Checksum
elixir-nimble-parsec_1.4.0.orig.tar.xz 34.7 KiB 5670f0775abb3c4915cade637e621dbec8141b7004f3de8636de5b4dea393c2b
elixir-nimble-parsec_1.4.0-1build1.debian.tar.xz 2.3 KiB f3bd400f5ef17b0684cc24e10026280f240a9adc0bdf3eceef4393f68c7e61f9
elixir-nimble-parsec_1.4.0-1build1.dsc 2.2 KiB 06afae5a40f813ff0717aafca3aedd74852ddcf59d94f8bb6450b1e258c2c9f9

View changes file

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.