From 1530172cb95dfa9f7c23b63879b0277ae1e50eaf Mon Sep 17 00:00:00 2001 From: Luca BRUNO Date: Tue, 11 Jun 2024 10:25:01 +0200 Subject: [PATCH] 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. --- cmov/Cargo.toml | 3 ++- fiat-constify/Cargo.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cmov/Cargo.toml b/cmov/Cargo.toml index 7d6d501b..67fe6d81 100644 --- a/cmov/Cargo.toml +++ b/cmov/Cargo.toml @@ -9,7 +9,8 @@ and CSEL on AArch64. version = "0.3.1" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" -repository = "https://github.com/RustCrypto/utils/tree/master/cmov" +homepage = "https://github.com/RustCrypto/utils/tree/master/cmov" +repository = "https://github.com/RustCrypto/utils" categories = ["cryptography", "hardware-support", "no-std"] keywords = ["crypto", "intrinsics"] readme = "README.md" diff --git a/fiat-constify/Cargo.toml b/fiat-constify/Cargo.toml index 8fd03147..b86fe12c 100644 --- a/fiat-constify/Cargo.toml +++ b/fiat-constify/Cargo.toml @@ -8,7 +8,8 @@ them as `const fn` authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" documentation = "https://docs.rs/fiat-constify" -repository = "https://github.com/RustCrypto/utils/tree/master/fiat-constify" +homepage = "https://github.com/RustCrypto/utils/tree/master/fiat-constify" +repository = "https://github.com/RustCrypto/utils" categories = ["cryptography"] keywords = ["fiat-crypto", "field"] readme = "README.md"