Remove unused and deprecated `tempdir` dependency

This commit is contained in:
Joshua Nelson 2021-08-10 15:48:41 -05:00 committed by Joshua Nelson
parent 057a81b9a4
commit 75d6ced4c9
3 changed files with 0 additions and 4 deletions

View File

@ -19,6 +19,5 @@ libc = "0.2"
boring-sys = { version = "1.1.0", path = "../boring-sys" } boring-sys = { version = "1.1.0", path = "../boring-sys" }
[dev-dependencies] [dev-dependencies]
tempdir = "0.3"
hex = "0.4" hex = "0.4"
rusty-hook = "^0.11" rusty-hook = "^0.11"

View File

@ -13,8 +13,6 @@ extern crate libc;
#[cfg(test)] #[cfg(test)]
extern crate hex; extern crate hex;
#[cfg(test)]
extern crate tempdir;
#[doc(inline)] #[doc(inline)]
pub use crate::ffi::init; pub use crate::ffi::init;

View File

@ -14,7 +14,6 @@ use std::process::{Child, ChildStdin, Command, Stdio};
use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::atomic::{AtomicBool, Ordering};
use std::thread; use std::thread;
use std::time::Duration; use std::time::Duration;
use tempdir::TempDir;
use crate::dh::Dh; use crate::dh::Dh;
use crate::error::ErrorStack; use crate::error::ErrorStack;