-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f47b14
commit a40b1e5
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
publish = false | ||
name = "regex-cli" | ||
version = "0.0.1" | ||
version = "0.0.1" #:version | ||
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"] | ||
description = """ | ||
A command line tool for debugging, ad hoc benchmarking and generating regular | ||
|
@@ -28,9 +27,9 @@ bstr = { version = "1.4.0", default-features = false, features = ["std"] } | |
lexopt = "0.3.0" | ||
log = { version = "0.4.17", features = ["std"] } | ||
memmap2 = "0.5.10" | ||
regex = { path = ".." } | ||
regex-automata = { path = "../regex-automata", features = ["logging"] } | ||
regex-lite = { path = "../regex-lite" } | ||
regex-syntax = { path = "../regex-syntax" } | ||
regex = { version = "1.9.0", path = ".." } | ||
regex-automata = { version = "0.3.0", path = "../regex-automata", features = ["logging"] } | ||
regex-lite = { version = "0.1.0", path = "../regex-lite" } | ||
regex-syntax = { version = "0.7.3", path = "../regex-syntax" } | ||
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] } | ||
textwrap = { version = "0.16.0", default-features = false } |