toolkit-zero 5.11.0

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.
1
2
3
4
5
6
7
8
9
10
//! 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"))]
pub use serde_json;

#[cfg(feature = "dependency-graph-build")]
pub use sha2;