6 comments (6 comments)0 reactions (0 reactions)0 assignees (0 assignees)Rust1,001 forks (1,001 forks)github user discovery
buggood first issuehelp wanted
Repository metrics
- Stars
- 19,103 stars (19,103 stars)
- PR merge metrics
- Avg merge 2d 11h (Avg merge 2d 11h)147 merged PRs in 30d (147 merged PRs in 30d)
Description
We have #[allow(clippy::arc_with_non_send_sync)] in various places, but let's just fix them up by using Arc in core.
Contributor guide
- Research direction
- Find all `#[allow(clippy::arc with non send sync)]` annotations in the codebase and replace `Arc` with appropriate thread safe types like `std::sync::Arc` where necessary, or remove the allow and fix underlying Send/Sync issues. Focus on core crate.
- Tech stack
- rust
- Domain
- backend
- Issue type
- Refactor
- Prerequisites
- RustClippy