bczhc / bzip3-rs

Rust wrapper for bzip3 compression library
GNU Lesser General Public License v3.0
1 stars 1 forks source link

Make the build script run in stable Rust - use closure #6

Closed marcospb19 closed 1 year ago

marcospb19 commented 1 year ago

@freijon found a new blocker in https://github.com/ouch-org/ouch/pull/522: the build script now requires nightly.

I believe it is impossible to use version "0.8.1" from any project that uses the stable toolchain, which can be easily solvable by replacing the use of the try block with a closure.

Alternate version of https://github.com/bczhc/bzip3-rs/pull/7.

bczhc commented 1 year ago

Oops, I never think of that. Thanks.