[package]
edition = "2021"
name = "branchfs"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FUSE filesystem with atomic branching for speculative execution"
readme = "README.md"
keywords = [
"fuse",
"filesystem",
"branching",
"copy-on-write",
]
categories = ["filesystem"]
license = "MIT"
repository = "https://github.com/multikernel/branchfs"
[lib]
name = "branchfs"
path = "src/lib.rs"
[[bin]]
name = "branchfs"
path = "src/main.rs"
[[test]]
name = "test_integration"
path = "tests/test_integration.rs"
[[test]]
name = "test_ioctl"
path = "tests/test_ioctl.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dashmap]
version = "5"
[dependencies.env_logger]
version = "0.11"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.nix]
version = "0.28"
features = [
"fs",
"user",
]
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[target.'cfg(target_os = "linux")'.dependencies.fuser]
version = "0.16"
features = [
"abi-7-40",
"libfuse",
]
[target.'cfg(target_os = "macos")'.dependencies.fuser]
version = "0.16"
features = [
"abi-7-31",
"libfuse",
]