mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Add Windows certificates
This commit is contained in:
parent
0bb20d24a2
commit
64bb39362e
1 changed files with 14 additions and 0 deletions
|
|
@ -167,7 +167,21 @@ async fn create_ctx(cli: &Cli) -> Result<Context> {
|
||||||
// TODO: Use crunchy.client() when it's possible
|
// TODO: Use crunchy.client() when it's possible
|
||||||
// currently crunchy.client() has a cloudflare bypass built-in to access crunchyroll. the servers
|
// currently crunchy.client() has a cloudflare bypass built-in to access crunchyroll. the servers
|
||||||
// where crunchy stores their videos can't handle this bypass and simply refuses to connect
|
// where crunchy stores their videos can't handle this bypass and simply refuses to connect
|
||||||
|
#[cfg(not(all(windows, target_env = "msvc")))]
|
||||||
let client = isahc::HttpClient::new().unwrap();
|
let client = isahc::HttpClient::new().unwrap();
|
||||||
|
#[cfg(all(windows, target_env = "msvc"))]
|
||||||
|
let client = isahc::HttpClientBuilder::default()
|
||||||
|
.proxy_tls_config(
|
||||||
|
isahc::tls::TlsConfigBuilder::default().root_cert_store(
|
||||||
|
isahc::tls::RootCertStore::custom(
|
||||||
|
rustls_native_certs::load_native_certs()
|
||||||
|
.unwrap()
|
||||||
|
.into_iter()
|
||||||
|
.map(|l| isahc::tls::Certificate::from_der(l.0)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.build();
|
||||||
|
|
||||||
Ok(Context { crunchy, client })
|
Ok(Context { crunchy, client })
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue