Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ specification.

## Features

* Supported extensions:
* [ACME renewal information (ARI)]
* [Profiles]
* Support for external account binding, key rollover, and contact updates
* Support for certificate revocation
* Store/recover your account credentials by serializing/deserializing
* Fully async implementation with tracing support
* Support for processing multiple orders concurrently
* Support for external account binding
* Support for certificate revocation
* Support for the [ACME renewal information (ARI)] extension
* Support for the [profiles] extension
* Support for account key rollover
* Support for account contacts update
* Uses hyper with rustls and Tokio for HTTP requests
* Uses *ring* or aws-lc-rs for ECDSA signing
* Uses aws-lc-rs or *ring* for ECDSA signing
* Minimum supported Rust version (MSRV): 1.70

[ACME renewal information (ARI)]: https://www.ietf.org/archive/id/draft-ietf-acme-ari-08.html
Expand Down
2 changes: 1 addition & 1 deletion examples/provision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async fn main() -> anyhow::Result<()> {
terms_of_service_agreed: true,
only_return_existing: false,
},
LetsEncrypt::Staging.url(),
LetsEncrypt::Staging.url().to_owned(),
None,
)
.await?;
Expand Down
Loading
Loading