Skip to content

Commit 9ae5245

Browse files
committed
chore: migrate scanner crate to edition 2024
1 parent a1c6abd commit 9ae5245

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scanner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruffle_scanner"
33
authors = ["Nathan Adams <[email protected]>"]
4-
edition.workspace = true
4+
edition = "2024"
55
homepage.workspace = true
66
license.workspace = true
77
repository.workspace = true

scanner/src/execute.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
33
use crate::cli_options::ExecuteReportOpt;
44
use crate::file_results::{AvmType, FileResults, Step};
5-
use crate::logging::{ScanLogBackend, ThreadLocalScanLogger, LOCAL_LOGGER};
5+
use crate::logging::{LOCAL_LOGGER, ScanLogBackend, ThreadLocalScanLogger};
6+
use ruffle_core::PlayerBuilder;
67
use ruffle_core::backend::navigator::{NullExecutor, NullNavigatorBackend};
78
use ruffle_core::limits::ExecutionLimit;
89
use ruffle_core::swf::{decompress_swf, parse_swf};
910
use ruffle_core::tag_utils::movie_from_path;
10-
use ruffle_core::PlayerBuilder;
1111
use sha2::{Digest, Sha256};
12-
use std::io::{stdout, Write};
12+
use std::io::{Write, stdout};
1313
use std::panic::catch_unwind;
1414
use std::path::Path;
1515
use std::time::{Duration, Instant};

0 commit comments

Comments
 (0)