Skip to content

Commit

Permalink
cargo: point repository metadata to clonable URLs (#609)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lucab committed Jun 10, 2024
1 parent d3548f2 commit ad109f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ccm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/ccm"
homepage = "https://github.com/RustCrypto/AEADs"
repository = "https://github.com/RustCrypto/AEADs/tree/master/ccm"
homepage = "https://github.com/RustCrypto/AEADs/tree/master/ccm"
repository = "https://github.com/RustCrypto/AEADs"
categories = ["cryptography", "no-std"]
keywords = ["encryption", "aead"]
rust-version = "1.65"
Expand Down
3 changes: 2 additions & 1 deletion chacha20poly1305/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/chacha20poly1305"
repository = "https://github.com/RustCrypto/AEADs/tree/master/chacha20poly1305"
homepage = "https://github.com/RustCrypto/AEADs/tree/master/chacha20poly1305"
repository = "https://github.com/RustCrypto/AEADs"
keywords = ["aead", "chacha20", "poly1305", "xchacha20", "xchacha20poly1305"]
categories = ["cryptography", "no-std"]
rust-version = "1.65"
Expand Down
4 changes: 2 additions & 2 deletions deoxys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ CAESAR competition as the first choice for in-depth security
authors = ["RustCrypto Developers, zer0x64"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/deoxys"
repository = "https://github.com/RustCrypto/AEADs/tree/master/deoxys"
homepage = "https://github.com/RustCrypto"
homepage = "https://github.com/RustCrypto/AEADs/tree/master/deoxys"
repository = "https://github.com/RustCrypto/AEADs"
keywords = ["aead", "deoxys", "deoxys-i", "deoxys-ii"]
categories = ["cryptography", "no-std"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions mgm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/mgm"
homepage = "https://github.com/RustCrypto/AEADs"
repository = "https://github.com/RustCrypto/AEADs/tree/master/mgm"
homepage = "https://github.com/RustCrypto/AEADs/tree/master/mgm"
repository = "https://github.com/RustCrypto/AEADs"
categories = ["cryptography", "no-std"]
keywords = ["encryption", "aead"]
rust-version = "1.56"
Expand Down

0 comments on commit ad109f3

Please sign in to comment.