From ebc6745b3c9124e79f937855e268f110044b7aa7 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 9 Sep 2025 00:04:39 +0200 Subject: [PATCH 1/2] bump defmt to v1, bump rand dev-dep to v0.9 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 33d1d6c..55abbfc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,14 +10,14 @@ authors = ["Matti Virkkunen "] repository = "https://github.com/rust-embedded-community/usb-device" [dependencies] -defmt = { version = "0.3", optional = true } +defmt = { version = "1", optional = true } portable-atomic = { version = "1.2.0", default-features = false } heapless = "0.8" log = { version = "0.4", default-features = false, optional = true} [dev-dependencies] rusb = "0.9.1" -rand = "0.8.5" +rand = "0.9" [features] From 2412e95c5a15eec4a122b7cfd8e2c33061e66e8f Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Thu, 18 Jun 2026 09:35:30 +0200 Subject: [PATCH 2/2] Update rand to version 0.10 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 55abbfc..ea49a99 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ log = { version = "0.4", default-features = false, optional = true} [dev-dependencies] rusb = "0.9.1" -rand = "0.9" +rand = "0.10" [features]