aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'games/rstnode/rst-core/src/lib.rs')
-rw-r--r--games/rstnode/rst-core/src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/games/rstnode/rst-core/src/lib.rs b/games/rstnode/rst-core/src/lib.rs
index 5ee4e49750c9..dc1a84f63b58 100644
--- a/games/rstnode/rst-core/src/lib.rs
+++ b/games/rstnode/rst-core/src/lib.rs
@@ -13,9 +13,15 @@
//! which is them implemented by [Server](crate::server::Server), and
//! [MatchClient](crate::client::MatchClient).
+// Remove the warning spam
+#![allow(warnings)]
+
#[macro_use]
extern crate const_env;
+#[macro_use]
+extern crate tracing;
+
pub(crate) mod _loop;
mod _if;
@@ -26,11 +32,14 @@ pub use _match::Match;
pub mod config;
pub mod data;
+pub mod error;
pub mod gens;
pub mod io;
pub mod lobby;
+pub mod mailbox;
pub mod map;
pub mod mapstore;
+pub mod net;
pub mod server;
pub mod stats;
pub mod users;