From d1ae09ca1e75f08a908d995e3b8afcea512ec34d Mon Sep 17 00:00:00 2001 From: Luca BRUNO Date: Tue, 11 Jun 2024 10:30:43 +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. --- aes-kw/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes-kw/Cargo.toml b/aes-kw/Cargo.toml index 306f3c5..83d43e1 100644 --- a/aes-kw/Cargo.toml +++ b/aes-kw/Cargo.toml @@ -4,8 +4,8 @@ version = "0.2.1" description = "NIST 800-38F AES Key Wrap (KW) and Key Wrap with Padding (KWP) modes" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" -homepage = "https://github.com/RustCrypto/key-wraps/" -repository = "https://github.com/RustCrypto/key-wraps/tree/aes-kw" +homepage = "https://github.com/RustCrypto/key-wraps/tree/aes-kw" +repository = "https://github.com/RustCrypto/key-wraps" keywords = ["crypto", "AES-KW", "KW", "AES-KWP", "KWP"] categories = ["cryptography", "no-std"] readme = "README.md"