Open mnpqraven opened 1 year ago
Also seeing this. Looks like it will be fixed on Tauri's end in v1.3 (not sure when that will be released): https://github.com/tauri-apps/tauri/issues/6252#issuecomment-1427571052
What has me perplexed is how @spacedriveapp are able to get past this issue. They seem to have a very similar setup to how create-rspc-app
's Tauri/PCR template looks like, and clearly they're not having any issues with cargo build
-ing or cargo run
-ing 🤔
Whoops, missed this issue.
It is definitely a problem in Tauri when using workspace = true
in your Cargo.toml
. You can replace workspace = true
with version = "..."
replacing it with the latest version of the crate and it will work.
Alternatively, you can import tauri-build
from Git because they have fixed it there.
Spacedrive is just magic sometimes, idk why it's working.
It's very odd this issue wasn't caught earlier. I have been very busy but will try and find some time to update the create-rspc-app templates to fix this.
Spacedrive is just magic sometimes
^ this 💯. Thanks for the suggestions, will try those out.
I was checking out
create-rspc-app
to see quick scaffolding with PCR but got these errors where the first seems to be the build scripts not handling linux machines (I'm running linux)when I cd into the folder and run
cargo run
the following errors show upTauri CLI also doesn't seem to get set up in
package.json
even if it's selected