ccgo 3.4.2

A high-performance C++ cross-platform build CLI
1
2
3
4
5
6
7
8
9
//! Dependency management module
//!
//! This module provides dependency resolution, graph management, version
//! conflict resolution, and transitive dependency handling.

pub mod graph;
pub mod resolver;
pub mod version_resolver;