agpm-cli 0.4.12

AGent Package Manager - A Git-based package manager for coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;
use std::fs;

/// Test helper: Creates agpm.toml in temp directory so find_project_root works
pub(crate) fn setup_project_root(temp_path: &std::path::Path) -> Result<()> {
    fs::write(temp_path.join("agpm.toml"), "[dependencies]\n")?;
    Ok(())
}

mod config_tests;
mod operations_tests;
mod serialization_tests;
mod settings_tests;