elixir-nimble-parsec 1.4.2-1 source package in Ubuntu
Changelog
elixir-nimble-parsec (1.4.2-1) unstable; urgency=medium * New upstream release. * Drop autopkg tests because they are currently broken by code path setting in the newest elixir's mix module. -- Sergei Golovan <email address hidden> Sun, 09 Feb 2025 20:01:10 +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 | Published | Component | Section | |
---|---|---|---|---|
Questing | release | universe | misc | |
Plucky | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
elixir-nimble-parsec_1.4.2-1.dsc | 2.1 KiB | 5d89593eacb8c913935cb6faf2be14d04f01c28656f0a8c122cf063e3588c83b |
elixir-nimble-parsec_1.4.2.orig.tar.xz | 35.1 KiB | 0268b1485fd83151b2c98188689d52609d2b9a562730de96ae5dfe89719fa088 |
elixir-nimble-parsec_1.4.2-1.debian.tar.xz | 2.3 KiB | b4ec9ffb2e88f6f4015bd62b94f96e58d91dab0e3e20187eda15fe446f2e8fb9 |
Available diffs
- diff from 1.4.0-2 to 1.4.2-1 (5.9 KiB)
- diff from 1.4.1-2 to 1.4.2-1 (1.1 KiB)
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.