summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-03-28 21:46:48 +0900
committerGitHub <noreply@github.com>2023-03-28 21:46:48 +0900
commit4358ab2d848cc6ba363f42e5f5b5b898b656db05 (patch)
treed4dc7dc75cbed3fdb794b508450cc6903d120c8f /Cargo.toml
parente5b2815b3943cd39038bba00da462082c6988e6e (diff)
fix(ext/node): implement crypto.Sign (RSA/PEM/SHA{224,256,384,512}) (#18471)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1af05645c..b4ee768be 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -121,6 +121,7 @@ serde_bytes = "0.11"
serde_json = "1.0.85"
serde_repr = "=0.1.9"
sha2 = { version = "0.10.6", features = ["oid"] }
+signature = "=1.6.4"
smallvec = "1.8"
socket2 = "0.4.7"
tar = "=0.4.38"
@@ -136,7 +137,7 @@ uuid = { version = "1.3.0", features = ["v4"] }
zstd = "=0.11.2"
# crypto
-rsa = { version = "0.7.0", default-features = false, features = ["std", "pem"] }
+rsa = { version = "0.7.0", default-features = false, features = ["std", "pem", "hazmat"] } # hazmat needed for PrehashSigner in ext/node
# macros
proc-macro2 = "1"