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

Audit std for places where a Send + 'static bound can be relaxed to just Send #22444

Closed
4 tasks
huonw opened this issue Feb 17, 2015 · 1 comment
Closed
4 tasks
Labels
A-concurrency Area: Concurrency

Comments

@huonw
Copy link
Member

huonw commented Feb 17, 2015

Once #22319 lands, rust-lang/rfcs#458 will be implemented and so Send will no longer imply 'static. Most users of Send in the standard library were changed to Send + 'static to conservatively ensure safety, but many can likely lose the 'static bound.

In #22319 (specifically, in comments on huonw@a85afe6), @nikomatsakis pointed out these as likely candidates:

@huonw huonw added A-libs A-concurrency Area: Concurrency labels Feb 17, 2015
huonw added a commit to huonw/rust that referenced this issue Feb 21, 2015
Adds some basic tests to check that the types still catch the most
glaring errors that could occur.

cc rust-lang#22444.
bors added a commit that referenced this issue Feb 22, 2015
Add a basic test that checks that the types catch the most glaring
errors that could occur.

cc #22444
@huonw
Copy link
Member Author

huonw commented Jan 8, 2016

I think this is done.

@huonw huonw closed this as completed Jan 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-concurrency Area: Concurrency
Projects
None yet
Development

No branches or pull requests

1 participant