]> git.proxmox.com Git - cargo.git/blobdiff - vendor/tempfile/src/lib.rs
New upstream version 0.52.0
[cargo.git] / vendor / tempfile / src / lib.rs
index a4cb574bbc16511aed9a87db0205c034c0dda8fa..51c2da09a6935fccf0919c607a32402a30333376 100644 (file)
 )]
 #![cfg_attr(test, deny(warnings))]
 #![deny(rust_2018_idioms)]
+#![allow(clippy::redundant_field_names)]
 
 #[macro_use]
 extern crate cfg_if;
@@ -143,7 +144,9 @@ mod spooled;
 mod util;
 
 pub use crate::dir::{tempdir, tempdir_in, TempDir};
-pub use crate::file::{tempfile, tempfile_in, NamedTempFile, PathPersistError, PersistError, TempPath};
+pub use crate::file::{
+    tempfile, tempfile_in, NamedTempFile, PathPersistError, PersistError, TempPath,
+};
 pub use crate::spooled::{spooled_tempfile, SpooledTempFile};
 
 /// Create a new temporary file or directory with custom parameters.