summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml31
1 files changed, 31 insertions, 0 deletions
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 <alejandro@34project.org>"]
+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"