aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorGard Kylling <[email protected]>2024-07-08 09:54:05 +0200
committerJack O'Connor <[email protected]>2024-07-17 08:42:36 -0700
commit84a4ec319a69682bb84efdcfd3ab376a310d4f6e (patch)
tree978f9f3b266c63a38208e0a4416a3328051ed663 /Cargo.toml
parent39e962e2bddf00a1786755c43c095c25b3b73a93 (diff)
Manually implement `Zeroize`
Removes dependence on proc-macros when enabling the zeroize feature.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3235400..41bb1ff 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -103,7 +103,7 @@ digest = { version = "0.10.1", features = [ "mac" ], optional = true }
memmap2 = { version = "0.9", optional = true }
rayon-core = { version = "1.12.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
-zeroize = { version = "1", default-features = false, features = ["zeroize_derive"], optional = true }
+zeroize = { version = "1", default-features = false, optional = true }
[dev-dependencies]
hmac = "0.12.0"