8 releases (4 breaking)

0.5.0 Mar 17, 2024
0.4.0 Sep 5, 2023
0.3.2 May 12, 2023
0.3.1 Nov 16, 2021
0.1.1 Jul 10, 2021

#289 in Cryptography

Download history 8/week @ 2024-01-08 57/week @ 2024-01-29 30/week @ 2024-02-19 19/week @ 2024-02-26 14/week @ 2024-03-04 171/week @ 2024-03-11 86/week @ 2024-03-18 21/week @ 2024-03-25 56/week @ 2024-04-01 25/week @ 2024-04-08 5/week @ 2024-04-15

113 downloads per month
Used in 3 crates (2 directly)

MIT license

63KB
1.5K SLoC

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Crates.io Released API docs MIT licensed

A generic async ACME crate.

The main goal is to allow binaries to choose what async runtime and TLS library is used.

Features

You need to specify via features what crates are used in the actual work.

feature flag Meaning
use_tokio Use tokio as async runtime
use_async_std Use async_std as async runtime
use_rustls Use rustls for HTTPS and generate Certificates tailored to it
hyper_rustls use_rustls+use_tokio GitHub Workflow Status
async_std_rustls use_rustls+use_async_std GitHub Workflow Status

Without anything specified you will end up with no async backend selected or no crypto backend selected. If you use this crate for a library, please reexport the appropriate features.

Motivation

Rust offers different async runtimes that - on a high level - offer the same thing: asynchronous functions for files, sockets and so on.

So if you write a lib and need some basic features (like an http client) you sometimes have to make choices that are not what your crate's users would have liked. For example: I wrote a webserver based on hyper and wanted to add ACME. A crate I found did what I needed but used async-h1 and async-std. While that worked, it did increase the binary size and number of crates I depend on by a good amount.

So I wrote this. You can specify which backend to use. In the Webserver case, using --features="hyper_rustls" (same dependencies) instead of --features="async_std_rustls" lead to 81 less crates and a 350kB smaller binary. Using:

[profile.release]
lto = "fat"
codegen-units = 1

Examples

These query certs from Let's Encrypt's Staging endpoint. In order for them to work you need to change the email and domain from example.com to your own.

  1. Hyper server with rustls: cargo run --example hyper_rustls --features="hyper_rustls"
  2. async-std server with rustls: cargo run --example async_rustls --features="async_std_rustls"

Plans

  1. Add native_tls
  2. Add openssl cert generation

Dependencies

~5–21MB
~314K SLoC