bicarlsen

Results 111 comments of bicarlsen

Here is an MRE to play with: [`extendr` multiple crates MRE](https://github.com/bicarlsen/extendr_multiple_crates-mre). Please let me know if you have any questions.

Okay, so this issue is fixed if you use absolute paths to reference local crates. It appears that because the cargo build step from `Makevars` is occurring in a temporary...

For me, setting the `-p` flag with relative paths for the local dependencies resulted in the original error.

> Here is an MRE to play with: [`extendr` multiple crates MRE](https://github.com/bicarlsen/extendr_multiple_crates-mre). Please let me know if you have any questions. @Ilia-Kosenkov I posted an MRE here, but let me...

@Ilia-Kosenkov, in my actual project I have a fairly large set of local crates that the my R package depends on, so it is impractical to put have to copy...

Seems good to me. Perhaps it's worth a mention in the docs?

For the `tauri-sys` crate we will only add functionality that is in the [core tauri API](https://github.com/tauri-apps/tauri/tree/dev/packages/api), not in plugins.

I'm not sure what the `PluginListener` is. Could you provide a reference to it? If you're talking about event listeners, that is implemented. ([example](https://github.com/JonasKruckenberg/tauri-sys/blob/dd9ba101f3a0db0e7fc965e695b3bd99b464386e/examples/leptos/src/app.rs#L210))

Ah cool. I haven't explored that part of the API yet. It looks fairly simple to implmenet though, so we can give it a shot. Feel free to submit a...

@Innominus, that would be great! When I started I had no idea how to do this either, and just learned by doing :) My typical workflow is to start by...