1
1
mirror of https://github.com/mgree/ffs.git synced 2024-09-17 14:07:15 +03:00
ffs/Cargo.toml
Michael Greenberg 35f6bf8188
Fuser 0.9.1 (#49), in anticipation of ffs 0.1.2
Update to fuser=0.9 (i.e., 0.9.1). Update websites, version numbers, etc. for new release.

Finally use `destroy` properly, got rid of the `Drop` impl for `FS`. Drop `AutoUnmount` which wasn't doing anything anyway.

Fixes and improvements to CI, docs, and logging.
2021-09-26 05:54:18 -07:00

37 lines
891 B
TOML

[package]
name = "ffs"
version = "0.1.2"
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.9"
libc = "0.2.51"
serde_json = "1.0"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = "0.2.18"
yaml-rust = "0.4.5"