tempfile
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).
Usage
Minimum required Rust version: 1.24.0
Add this to your Cargo.toml
:
[]
= "3"
...and this to your crate root:
extern crate tempfile;
Example
extern crate tempfile;
use File;
use ;