rust-lazy-regex 2.4.1-2 source package in Ubuntu

Changelog

rust-lazy-regex (2.4.1-2) unstable; urgency=medium

  * tighten autopkgtests

 -- Jonas Smedegaard <email address hidden>  Thu, 02 Feb 2023 18:36:18 +0100

Upload details

Uploaded by:
Jonas Smedegaard
Uploaded to:
Sid
Original maintainer:
Jonas Smedegaard
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-lazy-regex_2.4.1-2.dsc 2.8 KiB 0322d975bbd41bad1e316b769197772bcfbb8e058b81d345033738d9b0591559
rust-lazy-regex_2.4.1.orig.tar.gz 7.9 KiB 7a2b2c3bfcfa9e6433f53e6d32da557447b7cbec3438b8454668be5653fbcc72
rust-lazy-regex_2.4.1-2.debian.tar.xz 12.7 KiB 48e5dcb5a471dd2d97799b0e06f414bbfa404314ccc735b81f160535f38a01a6

Available diffs

No changes file available.

Binary packages built by this source

librust-lazy-regex-dev: lazy static regexes checked at compile time - Rust source code

 Lazy-regex enables you to use the `regex!` macro to build regexes:
  * they're checked at compile time
  * they're wrapped in `once_cell` lazy static initializers
    so that they're compiled only once
  * they can hold flags as suffix:
    `let case_insensitive_regex = regex!("ab*"i);`
  * regex creation is less verbose
 .
 This macro returns references to normal instances of `regex::Regex`
 so all the usual features are available.
 .
 This package contains the source for the Rust lazy-regex crate,
 packaged for use with cargo and dh-cargo.