rust-memex 0.6.5

Operator CLI + MCP server: canonical corpus second: semantic index second to aicx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Indexer module for the TUI wizard.

mod contracts;
mod files;
mod import;
mod scheduler;
mod sinks;
mod state;

pub use contracts::{
    INDEX_CONTROL_CHANNEL_CAPACITY, IndexControl, IndexEvent, IndexEventSink,
    IndexTelemetrySnapshot, SharedIndexTelemetry, new_index_telemetry,
};
pub use files::{collect_indexable_files, validate_path};
pub use import::import_lancedb;
pub use scheduler::{IndexingJob, start_indexing};
pub use sinks::{FanOut, TracingSink, TuiTelemetrySink};
pub use state::{DataSetupOption, DataSetupState, DataSetupSubStep, ImportMode};