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

Changelog

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

  * use git branch debian/unstable
  * update watch file: limit to track versions 2.*
  * simplify dependencies
  * update dh-cargo fork
  * update copyright info: update coverage

 -- Jonas Smedegaard <email address hidden>  Wed, 04 Oct 2023 21:56:16 +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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-lazy-regex_2.5.0-3.dsc 2.8 KiB 0204e8a73f6075eaf631270c95c342cea3d4433f4f96024fce50970667c0501b
rust-lazy-regex_2.5.0.orig.tar.gz 8.2 KiB 384f7ee4e24489afcae9c6b127488cdab37f4a5dc7304e47cb82eb1c0ee533ec
rust-lazy-regex_2.5.0-3.debian.tar.xz 15.2 KiB 4e1c13c56697444dc769405d7193017a69b8b0d9d73b84c9849bef6d34e9b8b5

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.