-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
49 lines (40 loc) · 908 Bytes
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "tfs"
version = "0.1.3"
authors = ["Jonathan Reem <[email protected]>"]
description = "Fast, content-addressed, snapshottable filesystem."
repository = "https://github.com/terminalcloud/tfs"
documentation = "https://crates.fyi/crates/tfs/0.1.3"
license = "GPL-3.0+"
[lib]
name = "tfs"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "tfs"
path = "src/main.rs"
doctest = false
doc = false
[dependencies]
scoped-pool = "0.1"
rand = "0.3"
libc = "0.2"
shared-mutex = "0.2"
terminal-linked-hash-map = "0.1"
crossbeam = "0.2"
slab = "0.1"
log = "0.3"
vec_map = "0.4"
variance = "0.1"
tiny-keccak = "1"
scopeguard = "0.1"
time = "0.1"
fuse = { git = "https://github.com/reem/rust-fuse" }
tfs-file-ext = { path = "tfs-file-ext", version = "0.1" }
# TODO: Move this back to dev-dependencies.
tempdir = "0.3"
[dev-dependencies]
tempfile = "2.0"
[features]
default = []
nightly = []