mhogrefe / malachite

An arbitrary-precision arithmetic library for Rust.
GNU Lesser General Public License v3.0
448 stars 17 forks source link

Fix `malachite` docs.rs build #25

Closed konstin closed 12 months ago

konstin commented 1 year ago

The malachite docs.rs build for 0.4.0 failed because doc-images is not a feature: https://docs.rs/crate/malachite/0.4.0/builds/902438

You can confirm this locally,

cargo +nightly doc -p malachite --features doc-images

fails while the following passes

cargo +nightly doc -p malachite --features malachite-nz/doc-images

(i can't test the actual doc.rs build unfortunately)

I had to add path = for the local dependencies to fix the local build (these are stripped out by cargo publish).