nim-regex 0.17.0+ds-2 source package in Ubuntu

Changelog

nim-regex (0.17.0+ds-2) unstable; urgency=medium

  * Added some sanity to the package.

 -- Steffen Moeller <email address hidden>  Sat, 31 Oct 2020 19:44:22 +0100

Upload details

Uploaded by:
Debian Nim Team
Uploaded to:
Sid
Original maintainer:
Debian Nim Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
nim-regex_0.17.0+ds-2.dsc 2.0 KiB e33296c32e612d474fd8b2536b7f948613800cdc0e5716551f313deb12e409bd
nim-regex_0.17.0+ds.orig.tar.xz 1.5 MiB d1bf4ddd978ad38627d444b7fbd9e5244aa92233e7219aed7cff9618fb165a4e
nim-regex_0.17.0+ds-2.debian.tar.xz 9.2 KiB d9b6f1611011062d396569489e5f8e6ba832178b2ac62c57540e1235d4d4b52b

No changes file available.

Binary packages built by this source

nim-regex-dev: library for parsing and executing regular expressions

 The package provides a library for parsing, compiling, and executing
 regular expressions for the nim programming language. The match time
 is linear with respect to the length of the input and the regular
 expression. So, it can handle input from untrusted users. Its syntax
 is similar to PCRE but lacks a few features that can not be implemented
 while keeping the space/time complexity guarantees, i.e.: backreferences
 and look-around assertions.
 .
 Features:
  * The match time is linear in the length of the input string
  * Regular expressions are (optionally) compiled at compile-time
  * Captures all group repetitions (not just the last one)
  * Unicode level-1 support
  * Descriptive error messages
 .
 This package provides the regex.nim file needed to create static
 applications, which is the default for nim.