diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-10 18:06:37 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-10 18:06:37 +0200 |
| commit | 3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996 (patch) | |
| tree | c3913fce710a879e2375c60a2b78e0cad483de18 /server/replaytool/src/main.rs | |
| parent | f78856e4cd4928c790748b883b7916585980b3dd (diff) | |
| download | hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.bz2 hurrycurry-3fe8ba7f1b9fa7e38fa03f55fd898c8ca2a0e996.tar.zst | |
Update to newest rust; replace rand with std random
Diffstat (limited to 'server/replaytool/src/main.rs')
| -rw-r--r-- | server/replaytool/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs index 1e5be601..5238a675 100644 --- a/server/replaytool/src/main.rs +++ b/server/replaytool/src/main.rs @@ -15,7 +15,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#![feature(exit_status_error)] +#![feature(exit_status_error, random)] pub mod record; pub mod render; @@ -23,12 +23,12 @@ pub mod replay; use crate::{ record::record, - render::{render, RenderArgs}, + render::{RenderArgs, render}, replay::replay, }; use clap::Parser; use hurrycurry_protocol::PacketC; -use log::{info, warn, LevelFilter}; +use log::{LevelFilter, info, warn}; use serde::{Deserialize, Serialize}; use std::{ path::PathBuf, |