[package]
edition = "2024"
rust-version = "1.88"
name = "fs-transaction"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-file filesystem transactions that survive a crash: staged change sets, all-or-nothing apply, write-ahead recovery"
homepage = "https://github.com/diaryx-org/fs-transaction"
readme = "README.md"
keywords = [
"filesystem",
"transaction",
"atomic",
"crash-safety",
"journal",
]
categories = [
"filesystem",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/diaryx-org/fs-transaction"
[features]
barrier-fsync = ["dep:libc"]
[lib]
name = "fs_transaction"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
optional = true