cargo_sane/lib.rs
1//! # cargo-sane
2//!
3//! Stop losing your mind over Rust dependency conflicts.
4//!
5//! `cargo-sane` is a CLI tool that helps you manage Rust dependencies intelligently.
6//! It provides commands to check for updates, resolve conflicts, clean unused dependencies,
7//! and monitor the health of your dependency tree.
8
9pub mod analyzer;
10pub mod cli;
11pub mod core;
12pub mod updater;
13pub mod utils;
14
15// Re-export commonly used types
16pub use anyhow::{Error, Result};