Skip to content

Commit 7a4ef73

Browse files
authored
Merge pull request #49 from jyn514/attohttpc
Switch from reqwest to attohttpc
2 parents ccd30e7 + dd1b0ba commit 7a4ef73

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ unstable = []
1818
unstable-toolchain-ci = []
1919

2020
[dependencies]
21+
http = "0.2"
2122
failure = "0.1.3"
2223
futures-util = "0.3.5"
2324
log = "0.4.6"
24-
tokio = { version = "0.2.21", features = ["process", "time"] }
25+
tokio = { version = "0.2.21", features = ["process", "time", "io-util", "stream", "rt-core", "rt-threaded"] }
2526
serde = { version = "1.0", features = ["derive"] }
2627
serde_json = "1.0"
2728
scopeguard = "1.0.0"
2829
lazy_static = "1.0.0"
2930
tempfile = "3.0.0"
30-
reqwest = { version = "0.10.4", features = ["blocking"] }
31+
attohttpc = "0.16"
3132
flate2 = "1"
3233
tar = "0.4.0"
3334
percent-encoding = "2.1.0"

src/crates/registry.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@ impl CrateTrait for RegistryCrate {
134134
std::fs::create_dir_all(parent)?;
135135
}
136136

137-
let mut resp = workspace
137+
workspace
138138
.http_client()
139139
.get(&self.fetch_url(workspace)?)
140140
.send()?
141-
.error_for_status()?;
142-
resp.copy_to(&mut BufWriter::new(File::create(&local)?))?;
141+
.error_for_status()?
142+
.write_to(&mut BufWriter::new(File::create(&local)?))?;
143143

144144
Ok(())
145145
}

src/workspace.rs

+5-8
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,12 @@ impl WorkspaceBuilder {
149149
SandboxImage::remote(DEFAULT_SANDBOX_IMAGE)?
150150
};
151151

152-
let mut headers = reqwest::header::HeaderMap::new();
153-
headers.insert(reqwest::header::USER_AGENT, self.user_agent.parse()?);
154-
let http = reqwest::blocking::ClientBuilder::new()
155-
.default_headers(headers)
156-
.build()?;
152+
let mut agent = attohttpc::Session::new();
153+
agent.header(http::header::USER_AGENT, self.user_agent);
157154

158155
let mut ws = Workspace {
159156
inner: Arc::new(WorkspaceInner {
160-
http,
157+
http: agent,
161158
path: self.path,
162159
sandbox_image,
163160
command_timeout: self.command_timeout,
@@ -180,7 +177,7 @@ impl WorkspaceBuilder {
180177
}
181178

182179
struct WorkspaceInner {
183-
http: reqwest::blocking::Client,
180+
http: attohttpc::Session,
184181
path: PathBuf,
185182
sandbox_image: SandboxImage,
186183
command_timeout: Option<Duration>,
@@ -266,7 +263,7 @@ impl Workspace {
266263
crate::toolchain::list_installed_toolchains(&self.rustup_home())
267264
}
268265

269-
pub(crate) fn http_client(&self) -> &reqwest::blocking::Client {
266+
pub(crate) fn http_client(&self) -> &attohttpc::Session {
270267
&self.inner.http
271268
}
272269

0 commit comments

Comments
 (0)