Skip to content

Use of unstable stream_position #68

Closed
@ghosty141

Description

@ghosty141

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions