mirror of
https://github.com/telemt/telemt.git
synced 2026-07-14 07:50:17 +03:00
Fix RustCrypto zeroize feature wiring
This commit is contained in:
Generated
+2
-1
@@ -21,6 +21,7 @@ dependencies = [
|
|||||||
"cfg-if",
|
"cfg-if",
|
||||||
"cipher",
|
"cipher",
|
||||||
"cpufeatures 0.2.17",
|
"cpufeatures 0.2.17",
|
||||||
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2899,7 +2900,7 @@ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "telemt"
|
name = "telemt"
|
||||||
version = "3.4.23"
|
version = "3.4.24"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "telemt"
|
name = "telemt"
|
||||||
version = "3.4.23"
|
version = "3.4.24"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
@@ -15,8 +15,8 @@ tokio = { version = "1.52.3", features = ["full", "tracing"] }
|
|||||||
tokio-util = { version = "0.7.18", features = ["full"] }
|
tokio-util = { version = "0.7.18", features = ["full"] }
|
||||||
|
|
||||||
# Crypto
|
# Crypto
|
||||||
aes = "0.8.4"
|
aes = { version = "0.8.4", features = ["zeroize"] }
|
||||||
ctr = "0.9.2"
|
ctr = { version = "0.9.2", features = ["zeroize"] }
|
||||||
cbc = "0.1.2"
|
cbc = "0.1.2"
|
||||||
sha2 = "0.10.9"
|
sha2 = "0.10.9"
|
||||||
sha1 = "0.10.6"
|
sha1 = "0.10.6"
|
||||||
|
|||||||
Reference in New Issue
Block a user