-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
40 lines (34 loc) · 1.1 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
[package]
name = "rand_regex"
version = "0.17.0"
authors = ["kennytm <kennytm@gmail.com>"]
description = "Generates random strings and byte strings matching a regex"
repository = "https://github.com/kennytm/rand_regex"
readme = "README.md"
keywords = ["regex", "random", "generator"]
categories = ["algorithms", "text-processing"]
license = "MIT"
edition = "2021"
rust-version = "1.71.1"
[badges]
travis-ci = { repository = "kennytm/rand_regex", branch = "master" }
is-it-maintained-issue-resolution = { repository = "kennytm/rand_regex" }
is-it-maintained-open-issues = { repository = "kennytm/rand_regex" }
maintenance = { status = "passively-maintained" }
[features]
default = ["unicode"]
unicode = ["regex-syntax/unicode"]
[[bench]]
name = "benchmark"
harness = false
[dependencies]
rand = { version = "0.8", default-features = false }
regex-syntax = { version = "0.8.2", default-features = false, features = ["std"] }
[dev-dependencies]
rand = "0.8"
regex = { version = "1.9", default-features = false, features = ["std", "unicode"] }
rand_xorshift = "0.3"
rand_distr = "0.4"
criterion = "0.5"
[profile.bench]
debug = 2