forked from amoffat/supertag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (52 loc) · 1.3 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "supertag"
version = "0.1.4"
authors = ["Andrew Moffat <[email protected]>"]
edition = "2018"
description = "Tag-based filesystem"
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/amoffat/supertag"
keywords = ["fuse", "tag", "filesystem", "fs"]
categories = ["filesystem", "os::unix-apis", "os::macos-apis"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "fuse-sys"]
[dependencies]
fuse-sys = { path = "./fuse-sys" }
rusqlite = "0.24.1"
nix = "0.19.1"
libc = "0.2"
clap = "2.33.3"
directories = "3.0"
config = "0.10.1"
log = {version = "0.4", features = ["release_max_level_info"]}
fern = "0.6"
chrono = "0.4"
signal-hook = "0.2.1"
time = "0.2.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4.0"
regex = "1.4.2"
metrohash = "1.0.6"
parking_lot = "0.11.1"
md5 = "0.7.0"
rand = "0.7.3"
xattr = "0.2.2"
ttl_cache = "0.5.1"
byteorder = "1.3.4"
walkdir = "2.3.1"
icns = "0.3.1"
crossbeam = "0.8.0"
uuid = { version="0.8.1", features = ["v4"] }
notify-rust = "4.0.0"
[target.'cfg(target_os="macos")'.dependencies]
core-foundation = "0.7.0"
[dev-dependencies]
tempfile = "3.1.0"
rand = "0.7.3"
spin_sleep = "0.3.7"
[[bin]]
name = "tag"
path = "src/tag.rs"