You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a project of mine I'm using rust (stable) and when building I get the following message:
error[E0658]: use of unstable library feature 'seek_convenience'
...
let id3_tag_pos = file.stream_position()?;
When checking out the function it says "this is equivalent to self.seek(SeekFrom::Current(0))." which would work in stable.
How about replacing the stream_position calls with seek(SeekFrom::Current(0)) to make this library fully compatible with stable rust?
Have you tried this/what is the reason this unstable feature is needed?
The text was updated successfully, but these errors were encountered:
At first I was confused because the CI should have caught this. But stream_position has been stabilized in Rust 1.51, which is the latest stable version. Updating your installed Rust version should fix it 👍
Oh I didn't notice, thanks 👍
What threw me off is, that the tracking issue is still open and I didn't see where it was added to stable rust. rust-lang/rust#59359
For a project of mine I'm using rust (stable) and when building I get the following message:
When checking out the function it says "this is equivalent to self.seek(SeekFrom::Current(0))." which would work in stable.
How about replacing the
stream_position
calls withseek(SeekFrom::Current(0))
to make this library fully compatible with stable rust?Have you tried this/what is the reason this unstable feature is needed?
The text was updated successfully, but these errors were encountered: