aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-client/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'games/rstnode/rst-client/src/main.rs')
-rw-r--r--games/rstnode/rst-client/src/main.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/games/rstnode/rst-client/src/main.rs b/games/rstnode/rst-client/src/main.rs
index a6ba4a59cdc1..4159a37d1d4a 100644
--- a/games/rstnode/rst-client/src/main.rs
+++ b/games/rstnode/rst-client/src/main.rs
@@ -1,5 +1,8 @@
//! RST Node game client
+// Remove the warning spam
+#![allow(warnings)]
+
#[macro_use]
extern crate tracing;
@@ -21,7 +24,8 @@ mod window;
pub(crate) use settings::{GameSettings, GraphicsSettings, WindowSettings};
pub(crate) use state::*;
-fn main() {
+#[async_std::main]
+async fn main() {
// Initialise logging mechanism
log::initialise();