daniel-e / captcha

CAPTCHA library written in Rust.
MIT License
98 stars 20 forks source link

Disable unused image features #11

Closed Nutomic closed 2 years ago

Nutomic commented 3 years ago

For me this change reduces clean build time from 35s to 29s, about 20% faster. Measured with:

cargo clean
RUSTC_WRAPPER='' cargo +nightly build -Ztimings

The env var is to disable sccache in case you have that enabled. Open the generated html file for detailed stats.

daniel-e commented 2 years ago

I verified the reduced build time. Thank you very much for you pull requests.

Nutomic commented 2 years ago

Hi @daniel-e, could you please publish a new crate version with this change? The image crate currently down our build a lot as it pulls in lots of dependencies we dont need.

daniel-e commented 2 years ago

Just published the version 0.0.9.

Nutomic commented 2 years ago

Thank you!