mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-19 01:31:15 -03:00
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
13 lines
233 B
TOML
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
|