acme-client icon indicating copy to clipboard operation
acme-client copied to clipboard

Yet another Let's Encrypt client and library written in Rust.

Results 11 acme-client issues
Sort by recently updated
recently updated
newest added

A project with the dependency ```toml acme-client = {version="0.5", default-features = false} ``` does not even compile: ``` $ cargo build Updating crates.io index error: failed to select a version...

I'm opening this PR because I was running into issues where the HTTP-01 workflow was failing due to invalid signatures and such. I investigated the code here after thoroughly reviewing...

The registration is now failing as per announcement: https://community.letsencrypt.org/t/end-of-life-plan-for-acmev1/88430

Older reqwest versions depends on an old openssl crate which does not work with openssl 1.1.1. I believe I have not introduced any new panics. Fixes #43

acme-client depends on an old version of reqwest which in turn depends on an old version of the openssl crate. The old openssl crate is not able to use at...

```bash acme-client $ rg contract src/lib.rs 726: map.insert("contract".to_owned(), to_value(contact)?); 728: map.insert("contract".to_owned(), ``` `contract` should be `contact`?

This would be a significant breaking change, but I given how the ecosystem is moving in Rust, I think it makes sense for acme-client to move to using the latest...