Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace std::sync::mpsc with a much simpler queue #7845

Closed
wants to merge 1 commit into from

Commits on Jan 29, 2020

  1. Replace std::sync::mpsc with a much simpler queue

    We don't need the complexity of most channels since this is not a
    performance sensitive part of Cargo, nor is it likely to be so any time
    soon. Coupled with recent bugs (rust-lang#7840) we believe in `std::sync::mpsc`,
    let's just not use that and use a custom queue type locally which should
    be amenable to a blocking push soon too.
    alexcrichton committed Jan 29, 2020
    Configuration menu
    Copy the full SHA
    f3f4633 View commit details
    Browse the repository at this point in the history