1 2 3 4 5 6 7 8 9 10 11
//! Ferrograph: graph-powered Rust code intelligence. //! //! Indexes Rust codebases into a queryable knowledge graph with CLI and MCP interfaces. pub mod config; pub mod graph; pub mod mcp; pub mod ops; pub mod pipeline; pub mod search; pub mod watch;