rust-lazy-regex 2.5.0-1 source package in Ubuntu

Changelog

rust-lazy-regex (2.5.0-1) unstable; urgency=medium

  [ upstream ]
  * new release

  [ Jonas Smedegaard ]
  * drop patch 1001, obsoleted by upstream changes
  * update dh-cargo fork
  * bump version for provided virtual packages and autopkgtest hints
  * handle diverging version for macros crate

 -- Jonas Smedegaard <email address hidden>  Sun, 30 Jul 2023 01:24:46 +0200

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

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-lazy-regex_2.5.0-1.dsc 2.8 KiB cad77bc0a95b0989d63d8dee7c16cec16ae6170507dc8c50ce3e4877516e1218
rust-lazy-regex_2.5.0.orig.tar.gz 8.2 KiB 384f7ee4e24489afcae9c6b127488cdab37f4a5dc7304e47cb82eb1c0ee533ec
rust-lazy-regex_2.5.0-1.debian.tar.xz 12.4 KiB 47fdf618ba3f473256aff5744f76f1eb5d4f4c89be8ddeb029615eba3d4c1231

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.