-
Notifications
You must be signed in to change notification settings - Fork 54
/
Cargo.toml
37 lines (34 loc) · 818 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
[package]
name = "catfs"
version = "0.9.0"
authors = ["Ka-Hing Cheung <khc@hxbc.us>"]
description = "Cache AnyThing filesystem"
keywords = ["filesystem", "fuse", "cache"]
categories = ["caching", "filesystem"]
license = "Apache-2.0"
repository = "https://github.com/kahing/catfs"
readme = "README.md"
[dependencies]
backtrace = "0.3"
chan-signal = "0.2"
clap = "2.29.0"
daemonize = "0.2"
env_logger = "0.4"
fd = { git = "https://github.com/stemjail/fd-rs.git", rev = "3bc3e3587f8904cce8bf29163a2021c2f5906557" }
fuse = "0.3.0"
generic-array = "0.14.7"
itertools = "0.6"
log = "0.3"
libc = "0.2.66"
rand = "0.3"
sha2 = "0.10.8"
syslog = "3.3"
threadpool = "1.4"
time = "0.1"
twox-hash = "1.5.0"
xattr = "0.2"
[lib]
test = false
harness = false
[badges]
travis-ci = { repository = "kahing/catfs", branch = "master" }