docs.rs failed to build acme-types-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
acme-types-0.1.1
acme-types-rs
This crate defines primitives for implementing ACME providers and clients.
See RFC 8555 for more information.
- This crate does not provide any functionality in terms of actually interacting with an ACME client or provider, e.g. in terms of a server or client or HTTP library (beyond support for de/serialization, as documented below)
- This crate does not provide any of the cryptographic functions necessary for implementing an ACME provider or client
use v2 as ACME;
let resp = get
.await?
.text
.await?;
let directory = ACMEfrom_str.unwrap;
println!;
>>> Directory
JSON De/serialization
Serialization and deserialization to and from JSON is supported using the serde (and serde_json) crate(s). This integration is optional (feature json):
= { = "*", = ["json"] }
When this feature is enabled, from_str and to_string are implemented on top-level ACME objects and resources.