Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add #[allow(clippy::arc_with_non_send_sync)]
warning: usage of an `Arc` that is not `Send` and `Sync` --> src/lib.rs:66:20 | 66 | inner: Arc::new(inner), | ^^^^^^^^^^^^^^^ | = note: `Arc<InnerStarReference>` is not `Send` and `Sync` as `InnerStarReference` is not `Send` = help: if the `Arc` will not used be across threads replace it with an `Rc` = help: otherwise make `InnerStarReference` `Send` and `Sync` or consider a wrapper type such as `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `#[warn(clippy::arc_with_non_send_sync)]` on by default
- Loading branch information