9 releases

0.1.8 Dec 22, 2023
0.1.7 Mar 23, 2022
0.1.6 Apr 28, 2021
0.1.5 Mar 23, 2021

#133 in Filesystem

Download history 2173/week @ 2024-01-26 2972/week @ 2024-02-02 2256/week @ 2024-02-09 3103/week @ 2024-02-16 2727/week @ 2024-02-23 605/week @ 2024-03-01 580/week @ 2024-03-08 485/week @ 2024-03-15 716/week @ 2024-03-22 1208/week @ 2024-03-29 1556/week @ 2024-04-05 1651/week @ 2024-04-12 1475/week @ 2024-04-19 1571/week @ 2024-04-26 2150/week @ 2024-05-03 2259/week @ 2024-05-10

7,826 downloads per month
Used in 17 crates (16 directly)

Apache-2.0

17KB
164 lines

temp-file

crates.io version license: Apache 2.0 unsafe forbidden pipeline status

Provides a TempFile struct.

Features

  • Makes a file in a system temporary directory
  • Deletes the file on drop
  • Optional name prefix, name suffix, contents, and directory.
  • Depends only on std
  • forbid(unsafe_code)
  • 100% test coverage

Limitations

Alternatives

  • tempfile
    • Popular and mature
    • Supports some security-sensitive use cases
    • Contains unsafe, dependencies full of unsafe
    • Heavy dependencies (libc, winapi, rand, etc.)
  • test-temp-file
    • Depends on crates which contain unsafe
    • Incomplete documentation
  • temp_file_name
    • Does not delete file
    • Usage is not straightforward. Missing example.
  • mktemp
    • Sets file mode 0600 on unix
    • Contains unsafe
    • No readme or online docs

Related Crates

Example

let t = temp_file::with_contents(b"abc");
// Prints "/tmp/1a9b0".
println!("{:?}", t.path());
assert_eq!(
  "abc",
  std::fs::read_to_string(t.path()).unwrap(),
);
// Prints "/tmp/1a9b1".
println!("{:?}", temp_file::empty().path());

Cargo Geiger Safety Report


Metric output format: x/y
    x = unsafe code used by the build
    y = total unsafe code found in the crate

Symbols: 
    🔒  = No `unsafe` usage found, declares #![forbid(unsafe_code)]= No `unsafe` usage found, missing #![forbid(unsafe_code)]
    ☢️  = `unsafe` usage found

Functions  Expressions  Impls  Traits  Methods  Dependency

0/0        0/0          0/0    0/0     0/0      🔒  temp-file 0.1.8

0/0        0/0          0/0    0/0     0/0    

Changelog

  • v0.1.8 - Work when the file already exists.
  • v0.1.7 - Add in_dir, with_suffix, and TempFileBuilder.
  • v0.1.6
    • Return std::io::Error instead of String.
    • Add cleanup.
  • v0.1.5 - Increase test coverage
  • v0.1.4 - Add leak and panic_on_cleanup_error.
  • v0.1.3 - Update docs
  • v0.1.2 - Update example
  • v0.1.1 - Minor code cleanup, update docs
  • v0.1.0 - Initial version

License: Apache-2.0

No runtime deps