Simple ACME client
Go to file
dvdsk c9a7b9da52 cargo fmt 2023-04-23 20:16:42 +02:00
.github Bump MSRV to 1.64 due to clap 2023-01-30 14:17:37 +01:00
examples Postpone certificate retrieval until order is valid 2023-03-15 19:01:15 +01:00
src cargo fmt 2023-04-23 20:16:42 +02:00
.gitignore Add .gitignore 2022-05-12 21:47:01 +02:00
Cargo.toml Bump version to 0.2.1 2023-04-03 10:28:57 +02:00
LICENSE Add Apache 2.0 license file 2022-05-12 21:47:01 +02:00
README.md Remove hiring notice from README 2023-01-30 14:26:37 +01:00
deny.toml Add CI configuration 2022-05-12 21:47:01 +02:00

README.md

instant-acme: async, pure-Rust ACME client

Documentation Crates.io Build status License: Apache 2.0

instant-acme is an async, pure-Rust ACME (RFC 8555) client.

instant-acme is used in production at InstantDomain to help us provision TLS certificates within seconds for our customers. instant-acme relies on Tokio and rustls to implement the RFC 8555 specification.

Features

  • Store/recover your account credentials by serializing/deserializing
  • Fully async implementation with tracing support
  • Support for processing multiple orders concurrently
  • Uses hyper with rustls and Tokio for HTTP requests
  • Uses ring for ECDSA signing
  • Minimum supported Rust version: 1.64

Limitations

  • Only tested with DNS challenges against Let's Encrypt so far (staging and production)
  • Only supports ECDSA keys for now

Getting started

See the examples directory for an example of how to use instant-acme.