Closed
Description
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?
Metadata
Metadata
Assignees
Labels
No labels