I'm looking for a way to design software that can download extensions. With Rust, I understand that the tool I need is dynamic libraries. But the selection of commands used by Tauri with the invoke_handler doesn't seem to be able to add new ones dynamically. So how can I dynamically add new commands imported from the loaded dynamic libraries?
#Rust Dynamic Lib with Tauri (or load Tauri plugin at runtime)
5 messages · Page 1 of 1 (latest)
I found documentation on the Tauri plugins : https://tauri.app/v1/guides/features/plugin
But that seams to still not dynamic. Maybe, am I wrong ?
I just found a plugin to upload and download files with Tauri https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/upload
usefull for my needs, so i have something to download, for example, other tauri plugins
but now how to load those plugins in runtime ?