1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
Source: rust-lazy-regex
Section: rust
Priority: optional
Build-Depends:
debhelper-compat (= 13),
dh-cargo (>= 25),
librust-once-cell-1+default-dev (>= 1.16) <!nocheck>,
librust-proc-macro2-1+default-dev <!nocheck>,
librust-quote-1+default-dev <!nocheck>,
librust-regex-1+default-dev (>= 1.7) <!nocheck>,
librust-syn-1+default-dev (>= 1.0.103) <!nocheck>,
librust-syn-1+full-dev (>= 1.0.103) <!nocheck>,
libstring-shellquote-perl,
Maintainer: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/debian/rust-lazy-regex.git
Vcs-Browser: https://salsa.debian.org/debian/rust-lazy-regex
Homepage: https://github.com/canop/lazy-regex
Rules-Requires-Root: no
Package: librust-lazy-regex-dev
Architecture: all
Multi-Arch: foreign
Depends:
librust-once-cell-1+default-dev (>= 1.16),
librust-proc-macro2-1+default-dev,
librust-quote-1+default-dev,
librust-regex-1+default-dev (>= 1.7),
librust-regex-1+perf-cache-dev (>= 1.7),
librust-regex-1+perf-dev (>= 1.7),
librust-regex-1+perf-dfa-dev (>= 1.7),
librust-regex-1+perf-inline-dev (>= 1.7),
librust-regex-1+perf-literal-dev (>= 1.7),
librust-regex-1+std-dev (>= 1.7),
librust-regex-1+unicode-age-dev (>= 1.7),
librust-regex-1+unicode-bool-dev (>= 1.7),
librust-regex-1+unicode-case-dev (>= 1.7),
librust-regex-1+unicode-dev (>= 1.7),
librust-regex-1+unicode-gencat-dev (>= 1.7),
librust-regex-1+unicode-perl-dev (>= 1.7),
librust-regex-1+unicode-script-dev (>= 1.7),
librust-regex-1+unicode-segment-dev (>= 1.7),
librust-syn-1+default-dev (>= 1.0.103),
librust-syn-1+full-dev (>= 1.0.103),
${misc:Depends},
Provides:
librust-lazy-regex+default-dev (= ${binary:Version}),
librust-lazy-regex+perf-cache-dev (= ${binary:Version}),
librust-lazy-regex+perf-dev (= ${binary:Version}),
librust-lazy-regex+perf-dfa-dev (= ${binary:Version}),
librust-lazy-regex+perf-inline-dev (= ${binary:Version}),
librust-lazy-regex+perf-literal-dev (= ${binary:Version}),
librust-lazy-regex+std-dev (= ${binary:Version}),
librust-lazy-regex+unicode-age-dev (= ${binary:Version}),
librust-lazy-regex+unicode-bool-dev (= ${binary:Version}),
librust-lazy-regex+unicode-case-dev (= ${binary:Version}),
librust-lazy-regex+unicode-dev (= ${binary:Version}),
librust-lazy-regex+unicode-gencat-dev (= ${binary:Version}),
librust-lazy-regex+unicode-perl-dev (= ${binary:Version}),
librust-lazy-regex+unicode-script-dev (= ${binary:Version}),
librust-lazy-regex+unicode-segment-dev (= ${binary:Version}),
librust-lazy-regex-2+default-dev (= ${binary:Version}),
librust-lazy-regex-2+perf-cache-dev (= ${binary:Version}),
librust-lazy-regex-2+perf-dev (= ${binary:Version}),
librust-lazy-regex-2+perf-dfa-dev (= ${binary:Version}),
librust-lazy-regex-2+perf-inline-dev (= ${binary:Version}),
librust-lazy-regex-2+perf-literal-dev (= ${binary:Version}),
librust-lazy-regex-2+std-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-age-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-bool-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-case-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-gencat-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-perl-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-script-dev (= ${binary:Version}),
librust-lazy-regex-2+unicode-segment-dev (= ${binary:Version}),
librust-lazy-regex-2-dev (= ${binary:Version}),
librust-lazy-regex-2.4-dev (= ${binary:Version}),
librust-lazy-regex-2.4.1-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros+default-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros-2+default-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros-2-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros-2.4-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros-2.4.1-dev (= ${binary:Version}),
librust-lazy-regex-proc-macros-dev (= ${binary:Version}),
Description: 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.
|