-
Notifications
You must be signed in to change notification settings - Fork 175
/
Cargo.toml
76 lines (65 loc) · 2.04 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
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
#
# Copyright © 2019-today Peter M. Stahl [email protected]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "grex"
version = "1.4.5"
authors = ["Peter M. Stahl <[email protected]>"]
description = """
grex generates regular expressions from user-provided test cases.
"""
homepage = "https://github.com/pemistahl/grex"
repository = "https://github.com/pemistahl/grex"
documentation = "https://docs.rs/grex"
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
categories = ["command-line-utilities", "parsing"]
keywords = ["pattern", "regex", "regexp"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
itertools = "0.13.0"
lazy_static = "1.5.0"
ndarray = "0.16.1"
petgraph = {version = "0.6.5", default-features = false, features = ["stable_graph"]}
regex = "1.10.6"
unic-char-range = "0.9.0"
unic-ucd-category = "0.9.0"
unicode-segmentation = "1.11.0"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
clap = {version = "4.5.20", features = ["derive", "wrap_help"], optional = true}
pyo3 = {version = "0.22.3", optional = true}
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen = "0.2.92"
[dev-dependencies]
indoc = "2.0.5"
rstest = "0.23.0"
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
assert_cmd = "2.0.16"
criterion = "0.5.1"
predicates = "3.1.2"
proptest = "1.5.0"
tempfile = "3.13.0"
[target.'cfg(target_family = "wasm")'.dev-dependencies]
wasm-bindgen-test = "0.3.42"
[features]
default = ["cli"]
cli = ["clap"]
python = ["pyo3"]
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
debug = true