From 43a519d129ec1da319175a85d47608e35946d3f1 Mon Sep 17 00:00:00 2001 From: Noah Citron Date: Wed, 2 Nov 2022 20:32:22 -0400 Subject: [PATCH] fix: use openssl (#81) --- client/Cargo.toml | 1 + consensus/Cargo.toml | 1 + execution/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/client/Cargo.toml b/client/Cargo.toml index cf31906..9f4302a 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -20,6 +20,7 @@ bytes = "1.2.1" futures = "0.3.23" toml = "0.5.9" log = "0.4.17" +openssl = { version = "0.10", features = ["vendored"] } common = { path = "../common" } consensus = { path = "../consensus" } diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index cb3bddd..2903109 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -21,6 +21,7 @@ async-trait = "0.1.57" log = "0.4.17" chrono = "0.4.22" thiserror = "1.0.37" +openssl = { version = "0.10", features = ["vendored"] } common = { path = "../common" } config = { path = "../config" } diff --git a/execution/Cargo.toml b/execution/Cargo.toml index b3e8491..7d3d29a 100644 --- a/execution/Cargo.toml +++ b/execution/Cargo.toml @@ -23,6 +23,7 @@ triehash-ethereum = { git = "https://github.com/openethereum/parity-ethereum" } async-trait = "0.1.57" log = "0.4.17" thiserror = "1.0.37" +openssl = { version = "0.10", features = ["vendored"] } common = { path = "../common" } consensus = { path = "../consensus" }