diff --git a/regex-automata/Cargo.toml b/regex-automata/Cargo.toml index 40a0ebfb9..30f32e3a8 100644 --- a/regex-automata/Cargo.toml +++ b/regex-automata/Cargo.toml @@ -4,7 +4,8 @@ version = "0.4.6" #:version authors = ["The Rust Project Developers", "Andrew Gallant "] description = "Automata construction and matching using regular expressions." documentation = "https://docs.rs/regex-automata" -repository = "https://github.com/rust-lang/regex/tree/master/regex-automata" +homepage = "https://github.com/rust-lang/regex/tree/master/regex-automata" +repository = "https://github.com/rust-lang/regex" readme = "README.md" keywords = ["regex", "dfa", "automata", "automaton", "nfa"] license = "MIT OR Apache-2.0" diff --git a/regex-capi/Cargo.toml b/regex-capi/Cargo.toml index 672697a1e..ee94bf48d 100644 --- a/regex-capi/Cargo.toml +++ b/regex-capi/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rust-lang/regex" documentation = "https://github.com/rust-lang/regex/tree/master/regex-capi" -homepage = "https://github.com/rust-lang/regex" +homepage = "https://github.com/rust-lang/regex/tree/master/regex-capi" description = """ A C API for Rust's regular expression library. """ diff --git a/regex-cli/Cargo.toml b/regex-cli/Cargo.toml index ac69c9ec4..b42a919ef 100644 --- a/regex-cli/Cargo.toml +++ b/regex-cli/Cargo.toml @@ -6,7 +6,8 @@ description = """ A command line tool for debugging, ad hoc benchmarking and generating regular expressions. """ -repository = "https://github.com/rust-lang/regex/tree/master/regex-cli" +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"] diff --git a/regex-lite/Cargo.toml b/regex-lite/Cargo.toml index 0ba53485b..295705855 100644 --- a/regex-lite/Cargo.toml +++ b/regex-lite/Cargo.toml @@ -3,7 +3,8 @@ name = "regex-lite" version = "0.1.5" #:version authors = ["The Rust Project Developers", "Andrew Gallant "] license = "MIT OR Apache-2.0" -repository = "https://github.com/rust-lang/regex/tree/master/regex-lite" +homepage = "https://github.com/rust-lang/regex/tree/master/regex-lite" +repository = "https://github.com/rust-lang/regex" documentation = "https://docs.rs/regex-lite" description = """ A lightweight regex engine that optimizes for binary size and compilation time. diff --git a/regex-syntax/Cargo.toml b/regex-syntax/Cargo.toml index 1a25d1ce6..44bd23814 100644 --- a/regex-syntax/Cargo.toml +++ b/regex-syntax/Cargo.toml @@ -3,7 +3,8 @@ name = "regex-syntax" version = "0.8.3" #:version authors = ["The Rust Project Developers", "Andrew Gallant "] license = "MIT OR Apache-2.0" -repository = "https://github.com/rust-lang/regex/tree/master/regex-syntax" +homepage = "https://github.com/rust-lang/regex/tree/master/regex-syntax" +repository = "https://github.com/rust-lang/regex" documentation = "https://docs.rs/regex-syntax" description = "A regular expression parser." workspace = ".." diff --git a/regex-test/Cargo.toml b/regex-test/Cargo.toml index 8adeb5888..d8e7665ac 100644 --- a/regex-test/Cargo.toml +++ b/regex-test/Cargo.toml @@ -9,7 +9,8 @@ You probably don't want to use this crate unless you're working on a regex implementation. """ documentation = "https://docs.rs/regex-test" -repository = "https://github.com/rust-lang/regex/tree/master/regex-test" +homepage = "https://github.com/rust-lang/regex/tree/master/regex-test" +repository = "https://github.com/rust-lang/regex" readme = "README.md" keywords = ["regex", "regexp", "dfa", "automata", "test"] license = "MIT OR Apache-2.0"