1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//! # embeddenator-fs
//!
//! EmbrFS: FUSE-based holographic filesystem.
//!
//! Extracted from embeddenator core as part of Phase 2A component decomposition.
//!
//! # Feature Flags
//!
//! - **`fuse`**: Enable FUSE filesystem support (requires `fuser` crate)
//! - **`disk-image`**: Enable QCOW2/raw disk image encoding (Linux with io_uring)
//! - **`disk-image-portable`**: Disk image support without io_uring (cross-platform)
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────────────┐
//! │ embeddenator-fs │
//! ├─────────────────────────────────────────────────────────────────────────┤
//! │ │
//! │ ┌───────────────────────┐ ┌───────────────────────┐ │
//! │ │ EmbrFS │ │ disk module │ │
//! │ │ (Directory/File │ │ (QCOW2/Raw image │ │
//! │ │ encoding) │ │ encoding) │ │
//! │ └───────────┬───────────┘ └───────────┬───────────┘ │
//! │ │ │ │
//! │ ▼ ▼ │
//! │ ┌─────────────────────────────────────────────────────────────────┐ │
//! │ │ embeddenator-vsa │ │
//! │ │ (Sparse ternary vectors, VSA encoding/decoding) │ │
//! │ └─────────────────────────────────────────────────────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ ┌─────────────────────────────────────────────────────────────────┐ │
//! │ │ embeddenator-io │ │
//! │ │ (Compression profiles: zstd, lz4) │ │
//! │ └─────────────────────────────────────────────────────────────────┘ │
//! │ │
//! └─────────────────────────────────────────────────────────────────────────┘
//! ```
pub use *;
/// Disk image support (QCOW2, raw images, partition tables, filesystem traversal)
///
/// # Why a Separate Module?
///
/// Disk image handling is optional and adds significant dependencies:
/// - `qcow2-rs` for QCOW2 format
/// - `tokio` + `tokio-uring` for async I/O
/// - `gpt`, `mbrman` for partition tables
/// - `ext4` for filesystem traversal
///
/// Users who only need directory encoding can avoid these dependencies.
// Re-export common types from vsa and retrieval for convenience
pub use Resonator;
pub use ;