diff --git a/examples/zkpassport/Cargo.lock b/examples/zkpassport/Cargo.lock index e5654cf..ab30aa9 100644 --- a/examples/zkpassport/Cargo.lock +++ b/examples/zkpassport/Cargo.lock @@ -2872,9 +2872,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.6" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" dependencies = [ "const-oid", "digest 0.10.7", diff --git a/examples/zkpassport/Cargo.toml b/examples/zkpassport/Cargo.toml index ce370f3..37cd613 100644 --- a/examples/zkpassport/Cargo.toml +++ b/examples/zkpassport/Cargo.toml @@ -37,7 +37,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "ansi", "regis # Crypto (host-side fixture generation + RSA witness building) sha2 = { version = "0.10.8", features = ["oid"] } -rsa = { version = "=0.9.6" } +rsa = { version = "=0.9.10" } rand = "0.8" rand_chacha = "0.3" postcard = { version = "1.0.8", default-features = false, features = ["use-std"] } diff --git a/jolt/jolt-inlines/rsa/Cargo.toml b/jolt/jolt-inlines/rsa/Cargo.toml index 8e62bd6..eda890f 100644 --- a/jolt/jolt-inlines/rsa/Cargo.toml +++ b/jolt/jolt-inlines/rsa/Cargo.toml @@ -31,7 +31,7 @@ rand = { workspace = true, features = ["std", "std_rng"] } num-bigint-dig = { version = "0.8", default-features = false } num-traits = "0.2" num-integer = "0.1" -rsa = { version = "=0.9.6" } +rsa = { version = "=0.9.10" } sha2 = { version = "0.10", features = ["oid"] } rand_chacha.workspace = true postcard = { version = "1", features = ["alloc"] }