prj_core/lib.rs
1//! Core library for `prj` — a local project manager.
2//!
3//! Provides project detection, database persistence, statistics collection,
4//! artifact cleaning, and workspace export/import.
5
6pub mod clean;
7pub mod config;
8pub mod detect;
9pub mod error;
10pub mod manifest;
11pub mod project;
12pub mod stats;