1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module contains external tool dependencies that we assume are available in the environment,
//! such as `cc` or `python`.

pub mod c_build;
pub mod cc;
pub mod clang;
pub mod htmldocck;
pub mod llvm;
pub mod python;
pub mod rustc;
pub mod rustdoc;

// Library-internal external dependency.
mod cygpath;