forked from ridiculousfish/rust-pcre2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
30 lines (25 loc) · 827 Bytes
/
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
[package]
name = "pcre2"
version = "0.2.9" #:version
authors = ["Andrew Gallant <[email protected]>", "fish-shell contributors"]
description = "High level wrapper library for PCRE2, with UTF-32 support."
documentation = "https://docs.rs/pcre2"
homepage = "https://github.com/fish-shell/rust-pcre2"
repository = "https://github.com/fish-shell/rust-pcre2"
readme = "README.md"
keywords = ["pcre", "pcre2", "regex", "jit", "perl"]
license = "Unlicense OR MIT"
categories = ["text-processing"]
edition = "2021"
[workspace]
members = ["pcre2-sys"]
[dependencies]
libc = "0.2.146"
log = "0.4.19"
pcre2-sys = { version = "0.2.9", path = "pcre2-sys" }
[features]
default = ["jit"]
# Enable matching on UTF-32 strings
utf32 = ["pcre2-sys/utf32"]
# Enable the PCRE2 JIT
jit = ["pcre2-sys/jit"]