toolkit_zero/dependency-graph/backend_deps.rs
1//! Re-exports all backend dependencies used by the `dependency-graph` module.
2//!
3//! Only available when the `backend-deps` feature is enabled together with
4//! `dependency-graph-build` and/or `dependency-graph-capture`.
5
6#[cfg(any(feature = "dependency-graph-build", feature = "dependency-graph-capture"))]
7pub use serde_json;
8
9#[cfg(feature = "dependency-graph-build")]
10pub use sha2;