-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 873 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "branchfs"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "FUSE filesystem with atomic branching for speculative execution"
repository = "https://github.com/multikernel/branchfs"
keywords = ["fuse", "filesystem", "branching", "copy-on-write"]
categories = ["filesystem"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
nix = { version = "0.28", features = ["fs", "user"] }
libc = "0.2"
log = "0.4"
env_logger = "0.11"
parking_lot = "0.12"
dashmap = "5"
anyhow = "1"
thiserror = "1"
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"] }