run_make_support/external_deps/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! 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 cargo;
pub mod cc;
pub mod clang;
pub mod htmldocck;
pub mod llvm;
pub mod python;
pub mod rustc;
pub mod rustdoc;