This crate defines types for implementing ACME (RFC 8555) providers and clients.
```rust use acme_types::v2 as ACME;
let resp = reqwest::get("https://acme-v02.api.letsencrypt.org/directory") .await? .text() .await?;
let directory = ACME::Directory::from_str(&resp).unwrap();
println!("{:#?}", directory);
Directory { newnonce: "https://acme-v02.api.letsencrypt.org/acme/new-nonce", newaccount: "https://acme-v02.api.letsencrypt.org/acme/new-acct", neworder: "https://acme-v02.api.letsencrypt.org/acme/new-order", newauthorization: None, revokecertificate: "https://acme-v02.api.letsencrypt.org/acme/revoke-cert", keychange: "https://acme-v02.api.letsencrypt.org/acme/key-change", metadata: Some( DirectoryMetadata { termsofservice: Some( "https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf", ), website: Some( "https://letsencrypt.org", ), caaidentities: Some( [ "letsencrypt.org", ], ), externalaccount_required: None, }, ), } ```
json
)Serialization and deserialization to and from JSON is supported using the serde
(and serde_json
) crate(s). This integration is optional (feature json
):
toml
acme-types = { version = "*", features = ["json"] }
When this feature is enabled, from_str
and to_string
are implemented on top-level ACME objects and resources.