diff options
| author | Alejandro Soto <alejandro@34project.org> | 2021-12-27 00:44:23 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2021-12-28 19:43:44 -0600 |
| commit | a3212a0ba07da7bdae9e17637fbc237e2ae01c08 (patch) | |
| tree | 00be583beba0f321ebeea3af21582ce927943b44 /Cargo.toml | |
| parent | 311b2a40213aa48131a189f99dc4258d354c0c78 (diff) | |
Redesign the API around a user-provided main loop
This is basically a full library rewrite.
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,9 +1,10 @@ [package] name = "blown-fuse" -version = "0.1.0" +version = "0.2.0" authors = ["Alejandro Soto <alejandro@34project.org>"] edition = "2021" description = "Filesystem in Userspace" +license = "LGPL-3.0-or-later" [features] default = ["server", "mount"] @@ -12,11 +13,9 @@ mount = ["server"] client = [] [dependencies] -async-trait = "0.1.52" bitflags = "1.3.2" bytemuck = "1.7.3" bytemuck_derive = "1.0.1" -futures-util = "0.3.19" log = "0.4.14" nix = "0.23.1" num_enum = "0.5.5" @@ -27,5 +26,6 @@ tokio = { version = "1.15.0", features = ["rt", "net", "macros", "sync"] } [dev-dependencies] clap = "2.34.0" env_logger = "0.9.0" +futures-util = "0.3.19" tokio = { version = "1.15.0", features = ["rt-multi-thread"] } uuid = "0.8.2" |
