Skip to content

Commit

Permalink
cargo: point repository metadata to clonable URLs
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 11bd6e8 commit 5388bff
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion jose-b64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = "Base64 utilities for use in JOSE crates"
documentation = "https://docs.rs/jose-b64"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-b64"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-b64"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion jose-jwa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Javascript Object Signing and Encryption (JOSE) specification as described in
RFC7518
"""
documentation = "https://docs.rs/jose-jwa"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwa"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwa"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion jose-jwe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Javascript Object Signing and Encryption (JOSE) specification as described in
RFC7516
"""
documentation = "https://docs.rs/jose-jwe"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwe"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwe"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion jose-jwk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Javascript Object Signing and Encryption (JOSE) specification as described in
RFC7517
"""
documentation = "https://docs.rs/jose-jwk"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwk"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwk"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion jose-jws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Javascript Object Signing and Encryption (JOSE) specification as described in
RFC7515
"""
documentation = "https://docs.rs/jose-jws"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-jws"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-jws"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down
3 changes: 2 additions & 1 deletion jose-jwt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Javascript Object Signing and Encryption (JOSE) specification as described in
RFC7519
"""
documentation = "https://docs.rs/jose-jwt"
repository = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwt"
homepage = "https://github.com/RustCrypto/JOSE/tree/master/jose-jwt"
repository = "https://github.com/RustCrypto/JOSE"
categories = ["cryptography", "data-structures", "encoding", "parser-implementations"]
keywords = ["json", "jose"]
readme = "README.md"
Expand Down

0 comments on commit 5388bff

Please sign in to comment.