aboutsummaryrefslogtreecommitdiff
path: root/tests/perf-client
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-10-06 21:26:55 +0000
committerGitHub <[email protected]>2025-10-06 21:26:55 +0000
commit07016a4ffbe0b0ea689b83a6ddf19ab1b6a9a79a (patch)
treede82055258c8e3962911e85426dc91f716f04a65 /tests/perf-client
parente2a2bd3c573928208a4c85e7fcd6ad630f23f47d (diff)
parentdbf0416abd48190056a25828d8e5d8f889170f88 (diff)
Merge pull request #4744 from embassy-rs/edition2024
Edition 2024.
Diffstat (limited to 'tests/perf-client')
-rw-r--r--tests/perf-client/Cargo.toml2
-rw-r--r--tests/perf-client/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/perf-client/Cargo.toml b/tests/perf-client/Cargo.toml
index c426fdd74..3756046fa 100644
--- a/tests/perf-client/Cargo.toml
+++ b/tests/perf-client/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2name = "perf-client" 2name = "perf-client"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2024"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false 6publish = false
7 7
diff --git a/tests/perf-client/src/lib.rs b/tests/perf-client/src/lib.rs
index 4bd9e5674..1ba071e8d 100644
--- a/tests/perf-client/src/lib.rs
+++ b/tests/perf-client/src/lib.rs
@@ -4,7 +4,7 @@ use defmt::{assert, *};
4use embassy_futures::join::join; 4use embassy_futures::join::join;
5use embassy_net::tcp::TcpSocket; 5use embassy_net::tcp::TcpSocket;
6use embassy_net::{Ipv4Address, Stack}; 6use embassy_net::{Ipv4Address, Stack};
7use embassy_time::{with_timeout, Duration, Timer}; 7use embassy_time::{Duration, Timer, with_timeout};
8 8
9pub struct Expected { 9pub struct Expected {
10 pub down_kbps: usize, 10 pub down_kbps: usize,