diff options
Diffstat (limited to 'server/tools/src/graph_summary.rs')
-rw-r--r-- | server/tools/src/graph_summary.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/tools/src/graph_summary.rs b/server/tools/src/graph_summary.rs index be53e768..bfdcc955 100644 --- a/server/tools/src/graph_summary.rs +++ b/server/tools/src/graph_summary.rs @@ -15,9 +15,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ + use anyhow::Result; +use hurrycurry_data::index::DataIndex; use hurrycurry_protocol::{ItemIndex, Recipe, TileIndex}; -use hurrycurry_server::data::DataIndex; use std::collections::HashSet; pub(crate) fn graph_summary() -> Result<()> { @@ -26,7 +27,7 @@ pub(crate) fn graph_summary() -> Result<()> { println!("digraph {{"); - let (data, sdata, _) = index.generate("5star")?; + let (data, sdata) = index.generate("5star")?; struct Node { inputs: Vec<ItemIndex>, |