1
1
mirror of https://github.com/mgree/ffs.git synced 2024-09-11 19:17:40 +03:00
ffs/Cargo.toml
Michael Greenberg e243e80c2c fix metadata
2021-06-26 11:30:03 -04:00

37 lines
891 B
TOML

[package]
name = "ffs"
version = "0.1.0"
authors = ["Michael Greenberg <michael.greenberg@stevens.edu>"]
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.8"
libc = "0.2.51"
serde_json = "1.0"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = "0.2.18"
yaml-rust = "0.4.5"