From 562a39cf6c662738f7718473f6bbc010970dce53 Mon Sep 17 00:00:00 2001
From: Klim Tsoutsman <klim@tsoutsman.com>
Date: Wed, 15 Nov 2023 17:40:59 +1100
Subject: [PATCH] Remove old irrelevant items from `Cargo.toml`  (#1075)

Some editors may complain about non-existent directories.

Signed-off-by: Klimenty Tsoutsman <klim@tsoutsman.com>
---
 Cargo.toml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 250e103cc9..6ac877dcce 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -34,9 +34,6 @@ exclude = [
 	"build",
 	"target",
 
-	## Exclude the `aarch64` directory, which is a WIP port that currently must be built separately.
-	"aarch64",
-
 	## Exclude configuration, tools, scripts, etc
 	"cfg",
 	"compiler_plugins",
@@ -45,7 +42,6 @@ exclude = [
 
 	## Exclude old components
 	"old_crates",
-	"userspace",
 
 	## Exclude third-party libs and ports for now.
 	## This allows Theseus crates that *are* included in a build to pull these
@@ -73,6 +69,7 @@ exclude = [
 	## Exclude benchmark-related crates in all builds; they must be explicitly included via features.
 	## TODO: move these to a specific "benches" folder so we can exclude that entire folder.
 	"applications/bm",
+	"applications/channel_eval",
 	"applications/heap_eval",
 	"applications/rq_eval",
 	"applications/scheduler_eval",
@@ -80,6 +77,7 @@ exclude = [
 	## Exclude application crates used for testing specific Theseus functionality.
 	## TODO: move these to a specific "tests" folder so we can exclude that entire folder.
 	"applications/test_aligned_page_allocation",
+	"applications/test_async",
 	"applications/test_backtrace",
 	"applications/test_block_io",
 	"applications/test_channel",
@@ -89,13 +87,15 @@ exclude = [
 	"applications/test_libc",
 	"applications/test_mlx5",
 	"applications/test_panic",
+	"applications/test_preemption_counter",
 	"applications/test_restartable",
-	"applications/test_serial_echo",
+	"applications/test_scheduler",
 	"applications/test_std_fs",
 	"applications/test_sync_block",
+	"applications/test_task_cancel",
+	"applications/test_tls",
 	"applications/test_wait_queue",
 	"applications/test_wasmtime",
-	"applications/tls_test",
 	"applications/unwind_test",
 ]