1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-04 17:19:35 +00:00

Fix rustls build.

This commit is contained in:
daxpedda 2019-12-07 10:48:45 +01:00
parent 1729a52f8b
commit 425654a18e
No known key found for this signature in database
GPG key ID: 43D62A3EA388E46F

View file

@ -88,7 +88,7 @@ impl Connector<(), ()> {
let mut config = ClientConfig::new();
config.set_protocols(&protos);
config.root_store.add_server_trust_anchors(
&actix_connect::ssl::rustls::TLS_SERVER_ROOTS,
&actix_tls::rustls::TLS_SERVER_ROOTS,
);
SslConnector::Rustls(Arc::new(config))
}