forked from mgree/ffs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 892 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
[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.13.0"
clap = "2.0"
fuser = "0.11"
libc = "0.2.51"
serde_json = "1.0"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = "0.2.18"
yaml-rust = "0.4.5"