diff options
author | iximeow <me@iximeow.net> | 2023-07-16 15:45:44 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-07-16 15:45:44 -0700 |
commit | cbe41fb33d06410b71a6ae716d6baf14bccaf103 (patch) | |
tree | dcc4d1bf5f680b6bad484bbd2b839e58cfafb0cc | |
parent | 780963395ad3919ce0c436221d1a1d7f03bc7336 (diff) |
exclude tmpdir from workspace
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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] |