From a30ba7775c252f9464d2f61ee318dd9b6f7707f6 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Mon, 10 Jun 2024 15:48:30 +0200 Subject: [PATCH] cargo: point `repository` metadata to clonable URLs (#77) 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. --- ascon/Cargo.toml | 3 ++- keccak/Cargo.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ascon/Cargo.toml b/ascon/Cargo.toml index b235a2b..8b6dd7a 100644 --- a/ascon/Cargo.toml +++ b/ascon/Cargo.toml @@ -8,7 +8,8 @@ authors = [ ] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/ascon" -repository = "https://github.com/RustCrypto/sponges/tree/master/ascon" +homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon" +repository = "https://github.com/RustCrypto/sponges" keywords = ["Ascon", "crypto", "permutation"] categories = ["cryptography", "no-std"] readme = "README.md" diff --git a/keccak/Cargo.toml b/keccak/Cargo.toml index 8897ead..d22d1c1 100644 --- a/keccak/Cargo.toml +++ b/keccak/Cargo.toml @@ -8,7 +8,8 @@ and keccak-p variants authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/keccak" -repository = "https://github.com/RustCrypto/sponges/tree/master/keccak" +homepage = "https://github.com/RustCrypto/sponges/tree/master/keccak" +repository = "https://github.com/RustCrypto/sponges" keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"] categories = ["cryptography", "no-std"] readme = "README.md"