Skip to content

Commit

Permalink
fix(bin/ofs): only memory backend available (#4353)
Browse files Browse the repository at this point in the history
* fix: only memory backend available

* fix
  • Loading branch information
ho-229 authored Mar 14, 2024
1 parent b8ff1af commit 7533627
Show file tree
Hide file tree
Showing 2 changed files with 194 additions and 1 deletion.
189 changes: 189 additions & 0 deletions bin/ofs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion bin/ofs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ clap = { version = "4.5.1", features = ["derive", "env"] }
env_logger = "0.11.2"
futures-util = "0.3.30"
log = "0.4.21"
nix = { version = "0.27.1", features = ["user"] }
opendal = { version = "0.45.1", path = "../../core" }
tokio = { version = "1.34", features = [
"fs",
Expand All @@ -52,3 +51,8 @@ bytes = "1.5.0"
libc = "0.2.151"
fuse3 = { "version" = "0.6.1", "features" = ["tokio-runtime", "unprivileged"] }
nix = { version = "0.27.1", features = ["user"] }

[features]
default = ["services-fs", "services-s3"]
services-fs = ["opendal/services-fs"]
services-s3 = ["opendal/services-s3"]

0 comments on commit 7533627

Please sign in to comment.