aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-08-15 20:42:22 -0800
committermat <git@matdoes.dev>2025-08-15 20:42:22 -0800
commit7ae3eceee2a2a5577259b1aa066f97b1314e175d (patch)
treec5033fa82d511a3ee0bd850545cdb23ba460e2f0
parentfba8338becba614a3724f21447b85945e024cce3 (diff)
downloadazalea-drasl-7ae3eceee2a2a5577259b1aa066f97b1314e175d.tar.xz
depend on git repo for rsa crate to fix compilation
-rw-r--r--Cargo.lock27
-rw-r--r--Cargo.toml2
2 files changed, 14 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9560e57d..7f94fe1b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -183,9 +183,9 @@ dependencies = [
[[package]]
name = "async-trait"
-version = "0.1.88"
+version = "0.1.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
+checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
dependencies = [
"proc-macro2",
"quote",
@@ -888,9 +888,9 @@ dependencies = [
[[package]]
name = "cc"
-version = "1.2.32"
+version = "1.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
+checksum = "3ee0f8803222ba5a7e2777dd72ca451868909b1ac410621b676adf07280e9b5f"
dependencies = [
"shlex",
]
@@ -1172,9 +1172,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
[[package]]
name = "crypto-bigint"
-version = "0.7.0-rc.0"
+version = "0.7.0-rc.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "737a2363b81de8cc95d8780d84aecb4b3c6f41e4473759da6636072b5514c875"
+checksum = "a19d32a062a0953e04cb5be69dd1ed8dc1ae0713c5bb4c247ce31b56a4ff6963"
dependencies = [
"num-traits",
"rand_core 0.9.3",
@@ -2692,9 +2692,9 @@ dependencies = [
[[package]]
name = "rayon"
-version = "1.10.0"
+version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
+checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
dependencies = [
"either",
"rayon-core",
@@ -2702,9 +2702,9 @@ dependencies = [
[[package]]
name = "rayon-core"
-version = "1.12.1"
+version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
+checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
@@ -2824,8 +2824,7 @@ dependencies = [
[[package]]
name = "rsa"
version = "0.10.0-rc.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b311b61ea276fd51ccb77f6995c5f70084db933bab9655ba51fe5d831ea25b39"
+source = "git+https://github.com/RustCrypto/RSA?rev=f32d85d1ed394a6d03f0403f423c19fda475b8bf#f32d85d1ed394a6d03f0403f423c19fda475b8bf"
dependencies = [
"const-oid",
"crypto-bigint",
@@ -3206,9 +3205,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
[[package]]
name = "syn"
-version = "2.0.104"
+version = "2.0.106"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
+checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 98461ba9..f10254a2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -59,7 +59,7 @@ quote = "1.0.40"
rand = "0.9.2"
regex = "1.11.1"
reqwest = { version = "0.12.23", default-features = false }
-rsa = "0.10.0-rc.4"
+rsa = { version = "0.10.0-rc.4", git = "https://github.com/RustCrypto/RSA", rev = "f32d85d1ed394a6d03f0403f423c19fda475b8bf" }
rsa_public_encrypt_pkcs1 = "0.4.0"
rustc-hash = "2.1.1"
serde = "1.0.219"