It shouldn't be necessary to keep any feature flags enabled when I just need an in-memory filter, and I suspect that the cli feature is interfering with my custom SIGINT/SIGTERM handler. But when I try to import it with default-features = false I get:
error[E0432]: unresolved import `super::storage`
--> ~/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/expiring-bloom-rs-0.4.10/src/bloom/filter.rs:3:5
|
3 | storage::FjallBackend,
| ^^^^^^^ could not find `storage` in `super`
|
note: found an item that was configured out
--> ~/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/expiring-bloom-rs-0.4.10/src/bloom.rs:6:9
|
5 | #[cfg(feature = "fjall")]
| ----------------- the item is gated behind the `fjall` feature
6 | pub mod storage;
| ^^^^^^^
It shouldn't be necessary to keep any feature flags enabled when I just need an in-memory filter, and I suspect that the
clifeature is interfering with my custom SIGINT/SIGTERM handler. But when I try to import it withdefault-features = falseI get: