A feature-selective Rust utility crate — a modular collection of opt-in utilities spanning encryption, HTTP networking, geolocation, and build-time fingerprinting. Enable only the features your project requires.
//! Re-exports all backend dependencies used by the `dependency-graph` module.
//!//! Only available when the `backend-deps` feature is enabled together with
//! `dependency-graph-build` and/or `dependency-graph-capture`.
#[cfg(any(feature ="dependency-graph-build", feature ="dependency-graph-capture"))]pubuse serde_json;#[cfg(feature ="dependency-graph-build")]pubuse sha2;