From b99e81738af6beec1c8b33593d90dc8fa2296064 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Tue, 11 Jun 2024 16:06:15 +0200 Subject: [PATCH] cargo: point `repository` metadata to clonable URLs (#171) 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. --- aucpace/Cargo.toml | 4 ++-- spake2/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aucpace/Cargo.toml b/aucpace/Cargo.toml index 8e33ae8..e64e8c4 100644 --- a/aucpace/Cargo.toml +++ b/aucpace/Cargo.toml @@ -4,8 +4,8 @@ version = "0.2.0-pre" authors = ["Sam Leonard "] description = "AuCPace protocol implementation" documentation = "https://docs.rs/aucpace" -homepage = "https://github.com/RustCrypto/PAKEs" -repository = "https://github.com/RustCrypto/PAKEs/tree/master/aucpace" +homepage = "https://github.com/RustCrypto/PAKEs/tree/master/aucpace" +repository = "https://github.com/RustCrypto/PAKEs" license = "MIT OR Apache-2.0" keywords = ["crypto", "pake", "authentication"] categories = ["cryptography", "authentication"] diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 6e22f7f..789ed41 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -4,8 +4,8 @@ version = "0.4.0" authors = ["Brian Warner "] description = "The SPAKE2 password-authenticated key-exchange algorithm." documentation = "https://docs.rs/spake2" -homepage = "https://github.com/RustCrypto/PAKEs" -repository = "https://github.com/RustCrypto/PAKEs/tree/master/spake2" +homepage = "https://github.com/RustCrypto/PAKEs/tree/master/spake2" +repository = "https://github.com/RustCrypto/PAKEs" license = "MIT OR Apache-2.0" keywords = ["crypto", "pake", "authentication"] categories = ["cryptography", "authentication"]