From b4af55c048df60bd21e584dae384fae67e74cdb2 Mon Sep 17 00:00:00 2001 From: Luca BRUNO Date: Mon, 10 Jun 2024 10:57:50 +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. --- ml-kem/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index 6d27c9e..887c489 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -9,7 +9,8 @@ edition = "2021" rust-version = "1.74" license = "Apache-2.0 OR MIT" readme = "README.md" -repository = "https://github.com/RustCrypto/KEMs/tree/master/ml-kem" +homepage = "https://github.com/RustCrypto/KEMs/tree/master/ml-kem" +repository = "https://github.com/RustCrypto/KEMs" categories = ["cryptography", "no-std"] keywords = ["crypto", "kyber", "lattice", "post-quantum"]