Files
fish-shell/crates/tempfile/Cargo.toml
Daniel Rainer 46f7f47bda util: add crate for creating tempfiles
ja: the motivation for our own crate is
1. the tempfile crate is probably overkill for such a small
   piece of functionality (given that we already assume Unix)
2. we want to have full control over the few temp files we
   do create

Closes #12028
2025-11-08 21:18:25 +01:00

13 lines
233 B
TOML

[package]
name = "fish-tempfile"
edition.workspace = true
rust-version.workspace = true
version = "0.0.0"
repository.workspace = true
[dependencies]
nix = { workspace = true, features = ["fs", "feature"] }
[lints]
workspace = true