aboutsummaryrefslogtreecommitdiff
path: root/tests/utils
diff options
context:
space:
mode:
authorxoviat <[email protected]>2025-11-24 21:28:58 -0600
committerxoviat <[email protected]>2025-11-24 21:28:58 -0600
commitee14305d152273254571d2a5a8192fad26f3ab73 (patch)
tree80ee08b08ddb82fe712da50b0a0859d4ded6b9b9 /tests/utils
parent461681028681930e50f41ee00154ac3e1886ebca (diff)
parent5ffb3698541674d57fddb22044ac0f06397c6113 (diff)
Merge branch 'main' of https://github.com/embassy-rs/embassy into xspi
Diffstat (limited to 'tests/utils')
-rw-r--r--tests/utils/Cargo.toml2
-rw-r--r--tests/utils/src/bin/saturate_serial.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils/Cargo.toml b/tests/utils/Cargo.toml
index ddb990e0f..da04a1f5d 100644
--- a/tests/utils/Cargo.toml
+++ b/tests/utils/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2name = "test-utils" 2name = "test-utils"
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/utils/src/bin/saturate_serial.rs b/tests/utils/src/bin/saturate_serial.rs
index 85676b106..1c8a8b322 100644
--- a/tests/utils/src/bin/saturate_serial.rs
+++ b/tests/utils/src/bin/saturate_serial.rs
@@ -2,7 +2,7 @@ use std::path::Path;
2use std::time::Duration; 2use std::time::Duration;
3use std::{env, io, process, thread}; 3use std::{env, io, process, thread};
4 4
5use rand::{rng, Rng}; 5use rand::{Rng, rng};
6use serial::SerialPort; 6use serial::SerialPort;
7 7
8pub fn main() { 8pub fn main() {