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

fix: mark Boxed Future as Send #328

Merged
merged 1 commit into from
Jun 24, 2021
Merged

fix: mark Boxed Future as Send #328

merged 1 commit into from
Jun 24, 2021

Commits on Jun 23, 2021

  1. fix: mark Boxed Future as Send

    The decrypt_chunk function is a function used by many higher level
    functions and crates. Without specifying the Send constraint, all
    async functions relying on this function will be non-Send.
    
    This shouldn't be dangerous, as the Boxed Future is actually Send-able
    as witnessed by the fact the compiler does not complain.
    b-zee committed Jun 23, 2021
    Configuration menu
    Copy the full SHA
    d4189a3 View commit details
    Browse the repository at this point in the history