crowdagger / epub-builder

A Rust library for generating EPUB files
Mozilla Public License 2.0
135 stars 45 forks source link

Don't include deflate or bzip2 features from zip #16

Closed deontologician closed 3 years ago

deontologician commented 3 years ago

The default features for zip include bzip2 and deflate but this library only uses stored compression, so there's no need to include those features.

I ran into this while compiling for arm7 (to run on remarkable e-reader), and bzip2 wouldn't compile because of some cpu feature or other. After some investigation it turned out bzip2 didn't seem to actually be needed by this library, so it seems like this won't hurt anything.

crowdagger commented 3 years ago

Than you!