Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NamedTempFile<F>, Builder::{make,make_in}, and NamedTempFile::from_parts #177

Merged
merged 4 commits into from
Apr 10, 2022

Commits on Apr 9, 2022

  1. Make NamedTempFile more generic

    This enables using it with non-File types, like a `UnixListener`.
    
    This should be a backwards compatible change.
    jasonwhite committed Apr 9, 2022
    Configuration menu
    Copy the full SHA
    0723802 View commit details
    Browse the repository at this point in the history
  2. Add Builder::{make, make_in} and NamedTempFile::from_parts

    This enables the user to do more generic temporary file path creation,
    such as creating a temporary UNIX domain socket or creating a temporary
    `tokio::fs::File` (without using `tokio::fs::File::from_std`).
    jasonwhite committed Apr 9, 2022
    Configuration menu
    Copy the full SHA
    90da93a View commit details
    Browse the repository at this point in the history
  3. Update my email address

    :)
    jasonwhite committed Apr 9, 2022
    Configuration menu
    Copy the full SHA
    aae51b4 View commit details
    Browse the repository at this point in the history
  4. Update NEWS

    jasonwhite committed Apr 9, 2022
    Configuration menu
    Copy the full SHA
    c040bef View commit details
    Browse the repository at this point in the history