1
Fork 0

Get rid of PreviousDepGraph.

This commit is contained in:
Camille GILLOT 2021-05-22 11:46:54 +02:00
parent fa72878a61
commit a50f1e949b
7 changed files with 49 additions and 79 deletions

View file

@ -1,13 +1,11 @@
pub mod debug;
mod dep_node;
mod graph;
mod prev;
mod query;
mod serialized;
pub use dep_node::{DepNode, DepNodeParams, WorkProductId};
pub use graph::{hash_result, DepGraph, DepNodeColor, DepNodeIndex, TaskDeps, WorkProduct};
pub use prev::PreviousDepGraph;
pub use query::DepGraphQuery;
pub use serialized::{SerializedDepGraph, SerializedDepNodeIndex};