Closed ghosty141 closed 3 years ago
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 :+1:
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. https://github.com/rust-lang/rust/issues/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?