system-deps-meta 8.0.0

Discover and configure system dependencies from declarative dependencies in Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//#![warn(missing_docs)]

pub mod error;
pub mod parse;

#[cfg(feature = "binary")]
pub mod binary;

#[cfg(any(test, feature = "test"))]
pub mod test;

/// Path to the top level Cargo.toml.
pub const BUILD_MANIFEST: &str = env!("SYSTEM_DEPS_BUILD_MANIFEST");

/// Directory where `system-deps` related build products will be stored.
pub const TARGET_DIR: &str = env!("SYSTEM_DEPS_TARGET_DIR");