You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I understand, the bindings are generated only when the app runs. This is confusing since I do not want to generate bindings each time the app starts.
Am I missing something? And, if not, what would be the most optimal way to move everything to the application build stage?
The text was updated successfully, but these errors were encountered:
Specta collects type information at runtime, not build time, so this won't be possible.
The recommended workflow is to only generating bindings in development using #[cfg(debug_assertions)] and then commit those to source control.
As far as I understand, the bindings are generated only when the app runs. This is confusing since I do not want to generate bindings each time the app starts.
Am I missing something? And, if not, what would be the most optimal way to move everything to the application build stage?
The text was updated successfully, but these errors were encountered: