Skip to content

Commit 3db6690

Browse files
authored
zeroize: fix homepage/repository in Cargo.toml (#1076)
Also fixes it for `zeroize_derive`. Now: - `repository` points to a valid git repository: the `utils` repo - `homepage` points to the GitHub URL for the crate's subdirectory
1 parent 7050a84 commit 3db6690

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

zeroize/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ even WASM!
1010
"""
1111
authors = ["The RustCrypto Project Developers"]
1212
license = "Apache-2.0 OR MIT"
13-
repository = "https://github.com/RustCrypto/utils/tree/master/zeroize"
13+
homepage = "https://github.com/RustCrypto/utils/tree/master/zeroize"
14+
repository = "https://github.com/RustCrypto/utils"
1415
readme = "README.md"
1516
categories = ["cryptography", "memory-management", "no-std", "os"]
1617
keywords = ["memory", "memset", "secure", "volatile", "zero"]

zeroize_derive/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description = "Custom derive support for zeroize"
44
version = "1.4.2"
55
authors = ["The RustCrypto Project Developers"]
66
license = "Apache-2.0 OR MIT"
7-
repository = "https://github.com/RustCrypto/utils/tree/master/zeroize/derive"
7+
homepage = "https://github.com/RustCrypto/utils/tree/master/zeroize_derive"
8+
repository = "https://github.com/RustCrypto/utils"
89
readme = "README.md"
910
categories = ["cryptography", "memory-management", "no-std", "os"]
1011
keywords = ["memory", "memset", "secure", "volatile", "zero"]
@@ -17,7 +18,7 @@ proc-macro = true
1718
[dependencies]
1819
proc-macro2 = "1"
1920
quote = "1"
20-
syn = {version = "2", features = ["full", "extra-traits", "visit"]}
21+
syn = { version = "2", features = ["full", "extra-traits", "visit"] }
2122

2223
[package.metadata.docs.rs]
2324
rustdoc-args = ["--document-private-items"]

0 commit comments

Comments
 (0)