From ddf782c6f3e430e1042e1491e01ad33970c554a6 Mon Sep 17 00:00:00 2001 From: Richard Zak Date: Mon, 13 Nov 2023 22:12:07 -0500 Subject: [PATCH] chore(deps): update `rsa`, `const-oid`, `der`, `openssl` Signed-off-by: Richard Zak --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dff0708..0858325 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,21 +26,21 @@ rcrypto = ["rand", "rsa", "sha2", "num-integer", "num-traits", "const-oid", "der [dependencies] x86_64 = { version = "^0.14.11", default-features = false } -openssl = { version = "^0.10.57", optional = true } -bitflags = "^2.4.0" +openssl = { version = "^0.10.59", optional = true } +bitflags = "^2.4.1" # Used by the rcrypto feature (see above). num-integer = { version = "^0.1.45", optional = true } num-traits = { version = "^0.2.16", optional = true } rand = { version = "^0.8.5", optional = true } sha2 = { version = "0.10.8", features = ["oid"], optional = true } -rsa = { version = "0.9.2", features = ["sha2"], optional = true } -const-oid = { version = "0.9.1", default-features = false, optional = true } -der = { version = "0.7.8", optional = true } -x509 = { version = "0.2.4", package = "x509-cert", default-features = false, optional = true } +rsa = { version = "^0.9.3", features = ["sha2"], optional = true } +const-oid = { version = "^0.9.5", default-features = false, optional = true } +der = { version = "^0.7.8", optional = true } +x509 = { version = "^0.2.4", package = "x509-cert", default-features = false, optional = true } [target.'cfg(target_arch = "x86_64")'.dependencies] -xsave = { version = "^2.0.0", default-features = false } +xsave = { version = "^2.0.2", default-features = false } [dev-dependencies] testaso = "0.1"