trusty-search 0.3.14

Machine-wide hybrid code search service: BM25 + vector + KG, zero cold-start, MCP server
Documentation
pub mod client;
pub mod config;
pub mod daemon;
pub mod indexed_files;
pub mod reindex;
pub mod server;
pub mod ui;
pub mod walker;
pub mod watch_loop;
pub mod watcher;

pub use config::{load_user_config, LoadedUserConfig};
pub use daemon::{
    daemon_lock_path, daemon_port_path, http_addr_path, is_already_running, run_daemon,
    running_daemon_pid, DaemonError, DaemonHandle,
};
pub use indexed_files::IndexedFiles;
pub use server::SearchAppState;
pub use watch_loop::{spawn_watch_loop, WatcherTask};
pub use watcher::{FileWatcher, WatchEvent};