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
`io::copy()` as well as the `BufReader`/`BufWriter` don't need nightly
Rust anymore as they the features needed are available on more recent
stable Rust versions. This commit bumps the MSRV to 1.55.
Closestechnocreatives#15.
I copied your implementation of the BufReader, tested it with new Rust and discovered that it compiles without nightly feature.
Looks like Rust already supports const generic. Details: https://blog.rust-lang.org/2021/02/26/const-generics-mvp-beta.html
Maybe it's time to remove the
nightly
feature?The text was updated successfully, but these errors were encountered: