Skip to content

Commit a40b1e5

Browse files
committed
regex-cli: make it publishable
1 parent 4f47b14 commit a40b1e5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

regex-cli/Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
2-
publish = false
32
name = "regex-cli"
4-
version = "0.0.1"
3+
version = "0.0.1" #:version
54
authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
65
description = """
76
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"] }
2827
lexopt = "0.3.0"
2928
log = { version = "0.4.17", features = ["std"] }
3029
memmap2 = "0.5.10"
31-
regex = { path = ".." }
32-
regex-automata = { path = "../regex-automata", features = ["logging"] }
33-
regex-lite = { path = "../regex-lite" }
34-
regex-syntax = { path = "../regex-syntax" }
30+
regex = { version = "1.9.0", path = ".." }
31+
regex-automata = { version = "0.3.0", path = "../regex-automata", features = ["logging"] }
32+
regex-lite = { version = "0.1.0", path = "../regex-lite" }
33+
regex-syntax = { version = "0.7.3", path = "../regex-syntax" }
3534
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
3635
textwrap = { version = "0.16.0", default-features = false }

0 commit comments

Comments
 (0)