Road to v0.5.0 : refactoring and async FuseHandler first implementation #91
Cirrus CI / FreeBSD
failed
Feb 8, 2026 in 2m 5s
Task Summary
Instruction build failed in 00:25
Details
✅ 00:01 clone
✅ 01:36 setup
❌ 00:25 build
Compiling either v1.15.0
Compiling smallvec v1.15.1
Compiling log v0.4.29
Compiling easy_fuser_macro v0.1.0 (/tmp/cirrus-ci-build/easy_fuser_macro)
Compiling threadpool v1.8.1
Compiling bimap v0.6.3
error[E0432]: unresolved imports `crate::ErrorKind`, `crate::PosixError`
--> src/unix_fs/bsd_like_fs.rs:4:13
|
4 | use crate::{ErrorKind, PosixError};
| ^^^^^^^^^ ^^^^^^^^^^ no `PosixError` in the root
| |
| no `ErrorKind` in the root
|
= help: consider importing one of these enums instead:
crate::fuse_parallel::prelude::ErrorKind
std::io::ErrorKind
= help: consider importing this struct through its public re-export instead:
crate::fuse_parallel::prelude::PosixError
error[E0432]: unresolved import `crate::PosixError`
--> src/unix_fs/bsd_fs.rs:4:5
|
4 | use crate::PosixError;
| ^^^^^^^^^^^^^^^^^ no `PosixError` in the root
|
help: consider importing this struct through its public re-export instead
|
4 | use crate::fuse_parallel::prelude::PosixError;
| ++++++++++++++++++++++++
warning: unused variable: `req`
--> /tmp/cirrus-ci-build/target/debug/build/easy_fuser-c86df62bdbfa823f/out/parallel/fuse_handler.rs:201:23
|
201 | fn forget(&self, req: &RequestInfo, file_id: Self::TId, nlookup: u64) {}
| ^^^ help: if this is intentional, prefix it with an underscore: `_req`
|
= note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
warning: unused variable: `file_id`
--> /tmp/cirrus-ci-build/target/debug/build/easy_fuser-c86df62bdbfa823f/out/parallel/fuse_handler.rs:201:42
|
201 | fn forget(&self, req: &RequestInfo, file_id: Self::TId, nlookup: u64) {}
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_file_id`
warning: unused variable: `nlookup`
--> /tmp/cirrus-ci-build/target/debug/build/easy_fuser-c86df62bdbfa823f/out/parallel/fuse_handler.rs:201:62
|
201 | fn forget(&self, req: &RequestInfo, file_id: Self::TId, nlookup: u64) {}
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nlookup`
For more information about this error, try `rustc --explain E0432`.
warning: `easy_fuser` (lib) generated 3 warnings
error: could not compile `easy_fuser` (lib) due to 2 previous errors; 3 warnings emitted
Exit status: 101
Loading