From 6f8130828f4269c65d158b5a684202cf1320da93 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Tue, 14 Mar 2023 20:27:36 +0100 Subject: [PATCH] chore: Name workspace members explicitly This makes switching between branches that introduce new crates easier. During switching, Git sometimes leaves directories in the tree, e.g. submodules, and those then produce issues when trying to compile in a branch that doesn't use that workspace member. --- Cargo.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index aef4708..6478737 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,14 @@ [workspace] resolver = "2" -members = ["crates/*", "lib/*"] +members = [ + "crates/dtmt", + "crates/dtmm", + "lib/dtmt-shared", + "lib/oodle-sys", + "lib/sdk", + "lib/serde_sjson", + "lib/steamlocate-rs", +] [profile.release] strip = "debuginfo"