Cargo Features
[dependencies]
dummyhttp = { version = "1.1.0", default-features = false, features = ["tls"] }
- default = tls
-
The
tls
feature is set by default wheneverdummyhttp
is added without
somewhere in the dependency tree.default-features = false - tls default
-
This feature allows us to use rustls only on architectures supported by ring. See also https://github.com/briansmith/ring/issues/1182 and https://github.com/briansmith/ring/issues/562 and https://github.com/briansmith/ring/issues/1367
Enables tls-rustls-no-provider of axum-server
Affects
args::Args.tls_cert
,args::Args.tls_key
…