From 33df427053abfe9adccb88718c9c67884befb571 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 22 Sep 2020 14:25:20 +0200 Subject: [PATCH] Add nix dependency --- Cargo.lock | 1 + aes-t-tables/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index fe1eba5..f36db37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6,6 +6,7 @@ version = "0.1.0" dependencies = [ "cache_utils 0.1.0", "memmap2 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nix 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.30 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.58 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/aes-t-tables/Cargo.toml b/aes-t-tables/Cargo.toml index 230801f..8c9d668 100644 --- a/aes-t-tables/Cargo.toml +++ b/aes-t-tables/Cargo.toml @@ -12,3 +12,4 @@ openssl = "0.10.30" cache_utils = { path = "../cache_utils" } memmap2 = "0.1.0" rand = "0.7.3" +nix = "0.17.0"