-
Notifications
You must be signed in to change notification settings - Fork 461
/
Copy pathCargo.toml
37 lines (34 loc) · 1.21 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
[package]
name = "regex-cli"
version = "0.2.0" #:version
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"]
description = """
A command line tool for debugging, ad hoc benchmarking and generating regular
expressions.
"""
homepage = "https://github.com/rust-lang/regex/tree/master/regex-cli"
repository = "https://github.com/rust-lang/regex"
keywords = ["regex", "cli", "debug", "nfa", "dfa"]
license = "MIT OR Apache-2.0"
categories = ["text-processing"]
autotests = false
edition = "2021"
rust-version = "1.65"
[[bin]]
name = "regex-cli"
path = "main.rs"
[features]
default = []
instrument = ["regex-automata/internal-instrument"]
[dependencies]
anyhow = "1.0.28"
bstr = { version = "1.4.0", default-features = false, features = ["std"] }
lexopt = "0.3.0"
log = { version = "0.4.17", features = ["std"] }
memmap2 = "0.9.4"
regex = { version = "1.9.0", path = ".." }
regex-automata = { version = "0.4.0", path = "../regex-automata", features = ["logging"] }
regex-lite = { version = "0.1.0", path = "../regex-lite" }
regex-syntax = { version = "0.8.0", path = "../regex-syntax" }
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
textwrap = { version = "0.16.0", default-features = false }