To fix this, I have to introduce a patch as in here, but this means that it would only compile on nightly and no longer on stable.
I was wondering whether this issue is solely my problem, or a larger problem in general. This has some strong issues for stability.
I am aware of the API evolution RFC, but was not able to pinpoint the exact case that this falls into.
Also, what is the best course of action to get it to work both on nightly and on stable. Renaming the method is a breaking change to my own API. This is fine for my simple never-used crate, but what about the larger picture. Another solution is to use UFCS in zip-rs, but that is not something I would like to do possibly on every Rust release.
If you change all usages of x.read_exact(size) to ReadPodExt::read_exact(x, size), the code will work on both stable and nightly, won't change any APIs and won't be tied to an unstable feature.
According to the basic principles of this RFC, such a change is minor: it is
always possible to annotate the call t.foo() to be more explicit in advance
using UFCS: Trait2::foo(t).
Thanks for the suggestion. I was already thinking about something like that.
This does not remove my more fundamental issues with this however, where after Rust 1.0 everything should be working in all of 1.x apart from obvious bugs.
This is certainly a known problem. We weren't sure how big a problem it would be in practice, but the scenario you're describing here is exactly one of the obvious problem vectors. Basically the desire to move a popular extension method into the standard library.
One of the mechanisms that has been tossed around for mitigating this problem (discussed in the RFC, I believe) was having cargo dependencies store an "elaborated" form (that used UFCS). This would still mean that you have to fix your code, but it would mean that people depend on your code via a cargo dependency do not break. Clearly an improvement, if not everything you might want.
The idea of ranking trait methods in some other way has also been considered -- or perhaps mitigating the problem by supporting overloading based on arity or some other means -- but I think nobody has tried to work this out in much detail, and I am dubious.