-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
42 lines (38 loc) · 1.19 KB
/
Cargo.toml
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
[package]
name = "lazy-regex"
version = "3.3.0"
authors = ["Canop <[email protected]>"]
edition = "2021"
description = "lazy static regular expressions checked at compile time"
keywords = ["macro", "lazy", "static", "regex"]
license = "MIT"
categories = ["text-processing"]
repository = "https://github.com/Canop/lazy-regex"
readme = "README.md"
rust-version = "1.56"
[dependencies]
once_cell = "1.17"
regex = {version = "1.9", default-features = false, optional = true}
regex-lite = {version = "0.1", optional = true}
[dependencies.lazy-regex-proc_macros]
path = "src/proc_macros"
version = "3.3.0"
[features]
default = ["regex/default"]
std = ["regex/std"]
lite = ["regex-lite"]
perf = ["regex/perf"]
perf-cache = ["regex/perf-cache"]
perf-dfa = ["regex/perf-dfa"]
perf-inline = ["regex/perf-inline"]
perf-literal = ["regex/perf-literal"]
unicode = ["regex/unicode"]
unicode-age = ["regex/unicode-age"]
unicode-bool = ["regex/unicode-bool"]
unicode-case = ["regex/unicode-case"]
unicode-gencat = ["regex/unicode-gencat"]
unicode-perl = ["regex/unicode-perl"]
unicode-script = ["regex/unicode-script"]
unicode-segment = ["regex/unicode-segment"]
[workspace]
members = ["src/proc_macros", "examples/regexes"]