Unverified Commit ab2c92da authored by Matthias Beyer's avatar Matthias Beyer
Browse files

cargo-public-api: Fix meta.{homepage, changelog} URL



Apparently, the repository was moved.

Signed-off-by: default avatarMatthias Beyer <mail@beyermatthias.de>
parent 58ae5939
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -31,8 +31,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "List and diff the public API of Rust library crates between releases and commits. Detect breaking API changes and semver violations";
    mainProgram = "cargo-public-api";
    homepage = "https://github.com/Enselic/cargo-public-api";
    changelog = "https://github.com/Enselic/cargo-public-api/releases/tag/v${finalAttrs.version}";
    homepage = "https://github.com/cargo-public-api/cargo-public-api";
    changelog = "https://github.com/cargo-public-api/cargo-public-api/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ matthiasbeyer ];
  };