Skip to content

Commit

Permalink
regex-cli: make it publishable
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jul 5, 2023
1 parent 4f47b14 commit a40b1e5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions regex-cli/Cargo.toml
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 <jamslam@gmail.com>"]
description = """
A command line tool for debugging, ad hoc benchmarking and generating regular
Expand All @@ -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 }

0 comments on commit a40b1e5

Please sign in to comment.