From 094198b22a4663d66d485e4a4ac9cfdc7928502d Mon Sep 17 00:00:00 2001 From: OHNONOTAMOTH <53664669+OHNONOTAMOTH@users.noreply.github.com> Date: Sat, 12 Mar 2022 03:40:23 -0500 Subject: [PATCH] Consistent tempfile crate declaration (version 3) (#3244) --- Cargo.toml | 2 +- src/uu/dd/Cargo.toml | 2 +- src/uu/mktemp/Cargo.toml | 2 +- src/uu/stdbuf/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4222f1749..43797e71e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -375,7 +375,7 @@ pretty_assertions = "1" rand = "0.8" regex = "1.0" sha1 = { version="0.10", features=["std"] } -tempfile = "3.2.0" +tempfile = "3" time = "0.1" unindent = "0.1" uucore = { version=">=0.0.11", package="uucore", path="src/uucore", features=["entries", "process"] } diff --git a/src/uu/dd/Cargo.toml b/src/uu/dd/Cargo.toml index b0392e14d..139a4845d 100644 --- a/src/uu/dd/Cargo.toml +++ b/src/uu/dd/Cargo.toml @@ -22,7 +22,7 @@ libc = "0.2" uucore = { version=">=0.0.8", package="uucore", path="../../uucore" } [dev-dependencies] -tempfile = "^3" +tempfile = "3" [target.'cfg(target_os = "linux")'.dependencies] signal-hook = "0.3.9" diff --git a/src/uu/mktemp/Cargo.toml b/src/uu/mktemp/Cargo.toml index eb25702d3..1ae00fa6f 100644 --- a/src/uu/mktemp/Cargo.toml +++ b/src/uu/mktemp/Cargo.toml @@ -17,7 +17,7 @@ path = "src/mktemp.rs" [dependencies] clap = { version = "3.0", features = ["wrap_help", "cargo"] } rand = "0.8" -tempfile = "3.1" +tempfile = "3" uucore = { version=">=0.0.11", package="uucore", path="../../uucore" } [[bin]] diff --git a/src/uu/stdbuf/Cargo.toml b/src/uu/stdbuf/Cargo.toml index c7942779d..a977adfe6 100644 --- a/src/uu/stdbuf/Cargo.toml +++ b/src/uu/stdbuf/Cargo.toml @@ -16,7 +16,7 @@ path = "src/stdbuf.rs" [dependencies] clap = { version = "3.0", features = ["wrap_help", "cargo"] } -tempfile = "3.1" +tempfile = "3" uucore = { version=">=0.0.11", package="uucore", path="../../uucore" } [build-dependencies]