Cargo Features

[dependencies]
lers = { version = "0.4.0", default-features = false, features = ["vendored", "http-01", "dns-01", "tls-alpn-01", "dns-01-cloudflare", "integration"] }
default = http-01

The http-01 feature is set by default whenever lers is added without default-features = false somewhere in the dependency tree.

vendored

Enables vendored of openssl, native-tls-vendored of reqwest ^0.11

http-01 default = hyper, uuid
dns-01 dns-01-cloudflare? = trust-dns-resolver

Affects solver::dns

tls-alpn-01 = rcgen
dns-01-cloudflare = dns-01
integration

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

hyper http-01

Enables hyper ^0.14

rcgen tls-alpn-01?

Enables rcgen ^0.10

trust-dns-resolver dns-01?

Enables trust-dns-resolver ^0.22

uuid http-01