diff --git a/Cargo.toml b/Cargo.toml index e842f8e..1f98c16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ authors = [ license = "MIT" description = "Rust implementation of the package url specification" documentation = "https://docs.rs/packageurl" -repository = "https://github.com/scm-rs/packageurl-rs" +repository = "https://github.com/scm-rs/packageurl.rs" readme = "README.md" keywords = ["purl", "package-url"] categories = ["parser-implementations", "encoding", "development-tools"] diff --git a/README.md b/README.md index adaf34b..600ad4b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # -`packageurl-rs` [![Star me](https://img.shields.io/github/stars/scm-rs/packageurl.rs.svg?style=social&label=Star)](https://github.com/scm-rs/packageurl.rs/stargazers) +`packageurl.rs` [![Star me](https://img.shields.io/github/stars/scm-rs/packageurl.rs.svg?style=social&label=Star)](https://github.com/scm-rs/packageurl.rs/stargazers) *Read and generate Package URLs in Rust.* @@ -74,7 +74,7 @@ a changelog as part of the [GitHub releases](https://github.com/scm-rs/packageur ## 💭 Feedback Found a bug? Have an enhancement request? Head over to the -[GitHub issue tracker](https://github.com/scm-rs/packageurl-rs/issues) of the project if +[GitHub issue tracker](https://github.com/scm-rs/packageurl.rs/issues) of the project if you need to report or ask something. If you are filling in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation. diff --git a/src/lib.rs b/src/lib.rs index ad4997b..f7f3f3c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ //! [`FromStr`]: https://doc.rust-lang.org/std/str/trait.FromStr.html //! [`PackageUrl`]: example_generated/struct.PackageUrl.html //! [`'static`]: https://doc.rust-lang.org/reference/items/static-items.html#static-lifetime-elision -#![doc(issue_tracker_base_url = "https://github.com/althonos/packageurl-rs/issues/")] +#![doc(issue_tracker_base_url = "https://github.com/althonos/packageurl.rs/issues/")] mod errors; mod parser;