From 788e858f6000b05b7b05d948288426f1896f78db Mon Sep 17 00:00:00 2001 From: Raffaele Ragni Date: Wed, 20 Dec 2023 20:33:08 +0100 Subject: [PATCH] new minor --- Cargo.toml | 2 +- src/networking/assets.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a8aa43f..5ead98a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sync" -version = "0.12.1" +version = "0.12.2" edition = "2021" authors = ["Raffaele Ragni "] license = "MIT OR Apache-2.0" diff --git a/src/networking/assets.rs b/src/networking/assets.rs index 65ced63..085192b 100644 --- a/src/networking/assets.rs +++ b/src/networking/assets.rs @@ -1,7 +1,7 @@ use bevy::prelude::*; -pub(crate) fn setup_client(app: &mut App, ip: std::net::IpAddr, web_port: u16) { +pub(crate) fn setup_client(_: &mut App, _: std::net::IpAddr, _: u16) { } -pub(crate) fn setup_server(app: &mut App, ip: std::net::IpAddr, web_port: u16) { +pub(crate) fn setup_server(_: &mut App, _: std::net::IpAddr, _: u16) { }