bole 0.2.5

Manage all package managers on your system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Bole
//!
//! Package manager discovery system for the `bole` CLI tool.
//!
//! Detects package managers across all ecosystems: JavaScript, Python, Rust,
//! system tools, and version managers. Determines installation sources and
//! resolves complex dependency chains.
//!
//! ## Architecture
//!
//! - [`find::Find`] - Core discovery trait implemented by all detectors
//! - [`pm::Detector`] - Combines discovery with categorization
//! - [`pm::all_package_managers()`] - Registry of all supported tools
//! - [`pm::determine_install_method()`] - Installation source attribution

pub mod find;
pub mod pm;