From 909ff03c2712b0d98ec6151a2a75ea117cfa732f Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Mon, 20 Jul 2026 21:26:51 +0200 Subject: [PATCH 1/2] Fix workspace.exclude in Cargo.toml Exclude does not support globs --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3d731169..50682762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ "bios/common", "tests/runner", ] -exclude = ["examples/basic", "examples/test_framework", "tests/test_kernels/*"] +exclude = ["examples/basic", "examples/test_framework", "tests/test_kernels/"] resolver = "3" [workspace.package] From d2775f38d86ad98e441ed3552100fd481f1e5804 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 21 Jul 2026 07:12:43 +0200 Subject: [PATCH 2/2] add config_file to test kernel workspace cargo fmt --all was correctly complaining about this. --- tests/test_kernels/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_kernels/Cargo.toml b/tests/test_kernels/Cargo.toml index f781d25c..09093a00 100644 --- a/tests/test_kernels/Cargo.toml +++ b/tests/test_kernels/Cargo.toml @@ -14,6 +14,7 @@ members = [ "write_usable_memory", "fixed_kernel_address", "stack_address", + "config_file", ] [profile.release]