secret-write 0.1.3

Atomic, permission-restricted secret file writes (0600 / Windows ACL)
Documentation
# secret-write — the safe restricted-file writer, carved out of the CLI's
# platform module. Atomic write (temp + fsync + rename) with owner-only
# permissions: chmod 0600 on unix, an icacls per-user DACL on Windows. No app
# coupling: pure std + Command, so the other trust crates (authkeys-managed,
# filament-id) and the CLI all share one byte-identical secret writer.
[package]
name = "secret-write"
version = "0.1.3"
authors = ["Abdk4Moura <pro.kaiserlautern@gmail.com>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/Abdk4Moura/filament"
description = "Atomic, permission-restricted secret file writes (0600 / Windows ACL)"
readme = "README.md"
keywords = ["filesystem", "security", "atomic", "permissions", "secret"]
categories = ["filesystem", "os"]

[dependencies]
# Version copied verbatim from cli/Cargo.toml. Currently only used for the
# public surface's error ergonomics; the Windows DACL path shells out to
# `icacls` via std::process::Command, so no `windows` crate is required.
anyhow = "1.0.102"