rust-lazy-regex 2.3.1-5 source package in Ubuntu

Changelog

rust-lazy-regex (2.3.1-5) unstable; urgency=medium

  * update dh-cargo fork;
    build-depend on libstring-shellquote-perl
  * fix publicly provide upstream-embedded crate lazy-regex-proc_macros;
    closes: bug#1025494, thanks to Matthias

 -- Jonas Smedegaard <email address hidden>  Tue, 06 Dec 2022 11:03:16 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
rust-lazy-regex_2.3.1-5.dsc 2.8 KiB 06385071dfde7bfb058d393ec30223ecd39ec71cd46a669a52792d8de657dddd
rust-lazy-regex_2.3.1.orig.tar.gz 7.8 KiB ee8bb3668462da142551e6fe6def75ac3e43073b058b3e2408872efff624256a
rust-lazy-regex_2.3.1-5.debian.tar.xz 12.4 KiB 0935a0583254063f358807116101724de172c2b51ec508acad8d352fd47024d5

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.