ccgo 3.7.1

A high-performance C++ cross-platform build CLI
1
2
3
4
5
6
7
8
//! 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;