forked from BurntSushi/rust-pcre2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 716 Bytes
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
[package]
name = "pcre2"
version = "0.2.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "High level wrapper library for PCRE2."
documentation = "https://docs.rs/pcre2"
homepage = "https://github.com/BurntSushi/rust-pcre2"
repository = "https://github.com/BurntSushi/rust-pcre2"
readme = "README.md"
keywords = ["pcre", "pcre2", "regex", "jit", "perl"]
license = "Unlicense/MIT"
categories = ["text-processing"]
edition = "2021"
[workspace]
members = ["pcre2-sys"]
[features]
default = ["utf8"]
utf8 = ["pcre2-sys/utf8"]
utf32 = ["pcre2-sys/utf32"]
static-pcre2 = []
[dependencies]
libc = "0.2.46"
log = "0.4.5"
pcre2-sys = { version = "0.2.0", path = "pcre2-sys" }
thread_local = "1"