From fc6f4052648a77a66f6bd50ffd1647992cb68b10 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Thu, 23 Dec 2021 18:57:18 -0600 Subject: Initial commit I started this project on February 2021, but postponed further development until now. The only modification introduced since then is try_trait_v2 (try_trait no longer exists). --- Cargo.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6d97cea --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "blown-fuse" +version = "0.1.0" +authors = ["Alejandro Soto "] +edition = "2018" +description = "Filesystem in Userspace" + +[features] +default = ["server", "mount"] +server = [] +mount = ["server"] +client = [] + +[dependencies] +async-trait = "0.1.42" +bitflags = "1.2.1" +bytemuck = "1.5.0" +bytemuck_derive = "1.0.1" +futures-util = "0.3.12" +log = "0.4.14" +nix = "0.19.1" +num_enum = "0.5.1" +quick-error = "2.0.0" +smallvec = "1.6.1" +tokio = { version = "1.2.0", features = ["rt", "net", "macros", "sync"] } + +[dev-dependencies] +clap = "2.33.3" +env_logger = "0.8.2" +tokio = { version = "1.2.0", features = ["rt-multi-thread"] } +uuid = "0.8.2" -- cgit v1.2.3