1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

unbreak build with rustc 1.32: force tempfile 3.1.0 (#1695)

This commit is contained in:
Sylvestre Ledru 2021-01-19 08:15:53 +01:00 committed by GitHub
parent 013bb285cd
commit e331186fee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 27 additions and 101 deletions

View file

@ -1,11 +1,10 @@
#[cfg(not(windows))]
use std::fs;
use std::path::Path;
extern crate tempfile;
use self::tempfile::tempdir;
use crate::common::util::*;
use std::env;
use std::path::Path;
use tempfile::tempdir;
#[test]
fn test_env_help() {