From 30d9527ceb876cec19d598858cca1d6553e85e8c Mon Sep 17 00:00:00 2001 From: Guillume DIDIER Date: Tue, 27 Sep 2022 11:13:22 +0200 Subject: [PATCH] Remove unnecessary dep in aes-t-tables --- Cargo.lock | 1 - aes-t-tables/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7e5ff3f..ab200ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,7 +29,6 @@ dependencies = [ "memmap2", "nix", "openssl", - "openssl-sys", "rand", ] diff --git a/aes-t-tables/Cargo.toml b/aes-t-tables/Cargo.toml index cf6d841..19bdd93 100644 --- a/aes-t-tables/Cargo.toml +++ b/aes-t-tables/Cargo.toml @@ -7,7 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -openssl-sys = "0.9.61" openssl = "0.10.33" cache_utils = { path = "../cache_utils" } memmap2 = "0.2.1"