summaryrefslogtreecommitdiff
path: root/server/src/data.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 17:19:25 +0200
commit90f42ec7a3f28fb3a87c233a81e8f65de832983e (patch)
treedba1334af5bb711555add7159874d1eabd89a4db /server/src/data.rs
parent70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (diff)
downloadhurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.bz2
hurrycurry-90f42ec7a3f28fb3a87c233a81e8f65de832983e.tar.zst
move glam dep to protocol crate
Diffstat (limited to 'server/src/data.rs')
-rw-r--r--server/src/data.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/src/data.rs b/server/src/data.rs
index fd028c94..9fd3e95c 100644
--- a/server/src/data.rs
+++ b/server/src/data.rs
@@ -21,8 +21,10 @@ use crate::{
interaction::Recipe,
};
use anyhow::{anyhow, bail, Result};
-use glam::{IVec2, Vec2};
-use hurrycurry_protocol::{DemandIndex, ItemIndex, RecipeIndex, TileIndex};
+use hurrycurry_protocol::{
+ glam::{IVec2, Vec2},
+ DemandIndex, ItemIndex, RecipeIndex, TileIndex,
+};
use serde::{Deserialize, Serialize};
use std::{
collections::{HashMap, HashSet},