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
@Finnerale would love to fix this.
I know the very basics of rust. But here's how I will approach this. Please correct me if I am wrong.
Remove all use of #[macro_use] from druid-shell/lib.rs file.
Import macros using use.
For example, in platform/mac/application.rs file I need to add the following line use objc::{class, msg_send, sel, sel_impl};.
druid-shell/src/lib.rs#L27
This is no longer necessary with Rust2018 and should be replaced with use statements in modules that actually utilize those macros
The text was updated successfully, but these errors were encountered: