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

http crate does not compile against latest nightly (caused by TryFrom). #49436

Closed
carllerche opened this issue Mar 28, 2018 · 4 comments
Closed
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@carllerche
Copy link
Member

See here: hyperium/http#192

try_from is already defined on on an HttpTryFrom trait in the library.

This is caused by TryFrom being included in prelude.

@frewsxcv frewsxcv added the T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. label Mar 28, 2018
@carllerche
Copy link
Member Author

I replied to @sfackler in the issue linked above, but I thought it would be worth posting here:

My understanding was that these sorts of "expected breakage" would go through an ecosystem "crater" (or whatever it is called) and if it broke things it wouldn't be applied.

I understand the problem that one must be able to add new fns / traits, but if breaking the http crate is considered "expected breakage", that seems to fail at Rust's promise for backwards compatibility as this will cascade down do everyone that depends on http as well as production Rust users.

The "fix" seems to be to not include TryFrom in std's prelude until the next Rust edition, which is coming soon.

@seanmonstar
Copy link
Contributor

The "fix" seems to be to not include TryFrom in std's prelude until the next Rust edition, which is coming soon.

It does seem like adding new traits to the prelude with a generic name like that should be reserved for new editions.


I'd suggest that the real solution is to have the compiler resolve the conflict by ranking explicit trait imports as higher than traits in a prelude (I guess any glob import).

@udoprog
Copy link
Contributor

udoprog commented Mar 29, 2018

There's a fair bit of discussion going on on this topic in the stabilization PR.

@Mark-Simulacrum
Copy link
Member

Since we've reverted TryFrom stabilization entirely and I believe this is no longer a problem, I'm going to close this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

5 participants