aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-core/src/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'games/rstnode/rst-core/src/data.rs')
-rw-r--r--games/rstnode/rst-core/src/data.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/games/rstnode/rst-core/src/data.rs b/games/rstnode/rst-core/src/data.rs
index 5ce5517c2b07..c41ec6d77e32 100644
--- a/games/rstnode/rst-core/src/data.rs
+++ b/games/rstnode/rst-core/src/data.rs
@@ -1,14 +1,13 @@
//! Data structures for the game
+#![allow(unused)]
+
use crate::io::Io;
use async_std::sync::Arc;
use rand::seq::SliceRandom;
use rand::thread_rng;
use serde::{Deserialize, Serialize};
-use std::{
- collections::BTreeMap,
- sync::atomic::{AtomicBool, AtomicU16, AtomicU32},
-};
+use std::sync::atomic::{AtomicBool, AtomicU16, AtomicU32};
pub type NodeId = usize;