tempfile
Minimum Rust Version: 1.9.0
A secure cross-platform temporary file library for rust. In addition to creating temporary files, this library also allows users to securely open multiple independent references to the same temporary file (useful for consumer/producer patterns and surprisingly difficult to implement securely).
Example
extern crate tempfile;
use File;
use ;