-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Proxy Option for download things from github #98
Comments
Hi, we are more than happy to accept contributions! Definitely, this is something that we will need to solve. |
For reference, we could use:
|
🤔maybe
|
We could publish the toolchain release artifacts to AWS. |
Just a small update on this, on yesterday's community meeting we discussed this issue. We will be probably creating a mirror of our Xtensa Rust and LLVM artifacts, probably in AWS, but we will wait until |
Tracking issue for Xtensa Rust mirror: esp-rs/rust-build#27 |
Just noticed that @chang196700 is using https://ghproxy.com/. I dont have any experience with it, but if it works, maybe we could just include a |
I modify this source file , path let client = reqwest::Client::builder()
.proxy(reqwest::Proxy::https("http://127.0.0.1:20171")?)
.build()?;
let resp = client.get(&url).send().await?;
let bytes = resp.bytes().await?; is work on my pc |
Motivations
Sometimes, it's hard download things from github without proxy in china, so can it add a proxy option?
Solution
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: