-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cargo: point
repository
metadata to clonable URLs
This tweaks the `repository` fields in Cargo metadata in order to use the correct (i.e. git clonable) URL. The existing GitHub webUI URLs for each package have been retained and moved to `homepage` fields.
- Loading branch information
Showing
6 changed files
with
11 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 |
---|---|---|
|
@@ -4,7 +4,8 @@ version = "0.4.6" #:version | |
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"] | ||
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" | ||
|
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
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
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 |
---|---|---|
|
@@ -3,7 +3,8 @@ name = "regex-lite" | |
version = "0.1.5" #:version | ||
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"] | ||
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. | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,8 @@ name = "regex-syntax" | |
version = "0.8.3" #:version | ||
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"] | ||
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 = ".." | ||
|
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