about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph/mod.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-11-15 16:15:38 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-11-16 16:49:22 +1100
commit8f669f558a02037feaafc3002207a1ac121b744d (patch)
tree9512a5fe4671b571147c2d4a67022eb9a5a51d6f /compiler/rustc_query_system/src/dep_graph/mod.rs
parent000767564e574f15ed4e6cd9ee0b56ecad6ae748 (diff)
downloadrust-8f669f558a02037feaafc3002207a1ac121b744d.tar.gz
rust-8f669f558a02037feaafc3002207a1ac121b744d.zip
Reduce exposure of things.
Diffstat (limited to 'compiler/rustc_query_system/src/dep_graph/mod.rs')
-rw-r--r--compiler/rustc_query_system/src/dep_graph/mod.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/compiler/rustc_query_system/src/dep_graph/mod.rs b/compiler/rustc_query_system/src/dep_graph/mod.rs
index 624ae680a8f..feb69ecd078 100644
--- a/compiler/rustc_query_system/src/dep_graph/mod.rs
+++ b/compiler/rustc_query_system/src/dep_graph/mod.rs
@@ -6,11 +6,8 @@ mod query;
 mod serialized;
 
 pub use dep_node::{DepKind, DepKindStruct, DepNode, DepNodeParams, WorkProductId};
-pub use edges::EdgesVec;
-pub use graph::{
-    hash_result, DepGraph, DepGraphData, DepNodeColor, DepNodeIndex, TaskDeps, TaskDepsRef,
-    WorkProduct, WorkProductMap,
-};
+pub(crate) use graph::DepGraphData;
+pub use graph::{hash_result, DepGraph, DepNodeIndex, TaskDepsRef, WorkProduct, WorkProductMap};
 pub use query::DepGraphQuery;
 pub use serialized::{SerializedDepGraph, SerializedDepNodeIndex};