-
Is it possible to use a Dynamic Library of Slint to develope with Rust? First Slint-App build downloads about 350 crates. How can I reduce the used dependencies? There are i-slint* crates that are not always used (e.g.: i-slint-backend-qt).
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is not implemented at the moment. I believe bevy has such a method to speed up linking. I suppose something similar could be implemented for Slint, perhaps.
The minimum would be
I don't know if that's possible, but it sounds similar to rust-lang/rust-analyzer#8275 |
Beta Was this translation helpful? Give feedback.
This is not implemented at the moment. I believe bevy has such a method to speed up linking. I suppose something similar could be implemented for Slint, perhaps.
The minimum would be
default-features = false, features = ["backend-winit", "renderer-femtovg", "compat-1-2"]
on a desktop or embedded linux system.