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
The only thing blocking line_token::Line from being thread-safe is that it's using a RefCell for interior mutability, which isn't thread-safe. Using a Mutex from async_lock would fix this.