summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2023-07-16 15:45:44 -0700
committeriximeow <me@iximeow.net>2023-07-16 15:45:44 -0700
commitcbe41fb33d06410b71a6ae716d6baf14bccaf103 (patch)
treedcc4d1bf5f680b6bad484bbd2b839e58cfafb0cc
parent780963395ad3919ce0c436221d1a1d7f03bc7336 (diff)
exclude tmpdir from workspace
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b81e4b8..6bc7645 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,7 +17,10 @@ members = [
"ci-ctl",
]
exclude = [
- "ci-wasm-frontend"
+ # wasm target should not be built for x86, so exclude it
+ "ci-wasm-frontend",
+ # and do not try treating builds of rust projects using cargo as a workspace item
+ "tmpdir",
]
[dependencies]