diff --git a/regex-cli/Cargo.toml b/regex-cli/Cargo.toml index a533f08d6..5b48921bb 100644 --- a/regex-cli/Cargo.toml +++ b/regex-cli/Cargo.toml @@ -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 "] 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 }