[package]
edition = "2024"
rust-version = "1.85"
name = "atomic-write-file"
version = "0.3.1"
authors = ["Andrea Corbellini <corbellini.andrea@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write files atomically to a file system"
readme = "README.md"
keywords = [
"file",
"atomic",
"write",
]
categories = ["filesystem"]
license = "BSD-3-Clause"
repository = "https://github.com/andreacorbellini/rust-atomic-write-file"
[features]
default = []
unnamed-tmpfile = []
unstable-can_vector = []
unstable-read_buf = []
unstable-seek_stream_len = []
unstable-unix_file_vectored_at = []
unstable-write_all_vectored = []
[lib]
name = "atomic_write_file"
path = "src/lib.rs"
[dependencies.rand]
version = "0.10.2"
[target."cfg(unix)".dependencies.nix]
version = "0.31.3"
features = [
"fs",
"user",
]