pd-rs / crank

A wrapper for cargo to use creating games for the Playdate handheld gaming system.
MIT License
85 stars 15 forks source link

Cannot run workspace projects #33

Closed sgeos closed 1 year ago

sgeos commented 1 year ago

A Playdate application cannot be built if it is part of a workspace. Excluding it from the workspace is a workaround.

workspace Cargo.toml partial listing

[workspace]
members = [
  "game_core_library",
  "game_pc",
]
exclude = [
  "game_playdate",
]
sgeos commented 1 year ago

Closing this issue, as I do not expect the workspace situation to change.