-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
38 lines (36 loc) · 954 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
[package]
name = "ffs"
version = "0.1.2"
authors = ["Michael Greenberg <[email protected]>"]
license = "GPL-3.0"
description = "ffs---the File FileSystem---lets you mount semi-structured data (like JSON) as a filesystem, letting you work with modern formats using your familiar shell tools."
readme = "README.md"
homepage = "https://mgree.github.io/ffs"
repository = "https://github.com/mgree/ffs"
keywords = ["data", "fuse", "json", "shell", "yaml"]
categories = ["command-line-utilities", "encoding", "filesystem"]
edition = "2018"
exclude = [
".github/*",
".gitignore",
"binary/*",
"docs/*",
"man/*",
"json/*",
"run_tests.sh",
"tests/*",
"toml/*",
"yaml/*",
]
[dependencies]
base64 = "0.22"
clap = "2.0"
fuser = "0.14"
libc = "0.2"
regex = "1.10"
serde_json = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
xattr = "1.3"
yaml-rust = "0.4.5"