From fc7fe9f9132faf95d9f018572767bcad5e3db7bf Mon Sep 17 00:00:00 2001 From: "chandr-andr (Kiselev Aleksandr)" Date: Wed, 16 Jul 2025 23:12:00 +0200 Subject: [PATCH] Fixed openssl version --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2399507c..23656355 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -731,9 +731,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" [[package]] name = "openssl" -version = "0.10.73" +version = "0.10.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" +checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" dependencies = [ "bitflags", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index fafbf80b..d4f62a14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ rust_decimal = { git = "https://github.com/psqlpy-python/rust-decimal.git", bran "db-tokio-postgres", ] } postgres_array = { git = "https://github.com/psqlpy-python/rust-postgres-array.git", branch = "psqlpy" } -openssl = { version = "0.10.64", features = ["vendored"] } +openssl = { version = "= 0.10.64", features = ["vendored"] } itertools = "0.12.1" openssl-src = "300.2.2" openssl-sys = "0.9.102"