diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-07-05 22:03:47 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-07-05 22:03:47 +0200 |
commit | d08138ea633da76d9ca390e4f9e3c5489aee23d1 (patch) | |
tree | 80a682350c75d6e01f05144cf054e9d48edbed07 /src/abconfig.rs | |
parent | 098adf3a6895529bbd467f13b55fc241099c2ff7 (diff) | |
download | rust-zotapi-d08138ea633da76d9ca390e4f9e3c5489aee23d1.tar.gz rust-zotapi-d08138ea633da76d9ca390e4f9e3c5489aee23d1.tar.bz2 rust-zotapi-d08138ea633da76d9ca390e4f9e3c5489aee23d1.zip |
Update reqwest and make async.
This means adding the full tokio as a dependency. While there isn't much
gain to going async in the current cli demo app, a full fledged app may
have more to gain by it.
First foray into async rust, so I might not do it right...
Diffstat (limited to 'src/abconfig.rs')
-rw-r--r-- | src/abconfig.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/abconfig.rs b/src/abconfig.rs index 6348030..ebb7e2b 100644 --- a/src/abconfig.rs +++ b/src/abconfig.rs @@ -61,14 +61,14 @@ impl ABConfigRequest { self } - pub fn fetch(&self, client: &Client) -> Result<Vec<ABConfig>, Error> { + pub async fn fetch(&self, client: &Client) -> Result<Vec<ABConfig>, Error> { let mut req = client.get("abconfig"); if let Some(id) = self.abook_id { req = req.query(&[("abook_id", id.to_string())]); } - Ok(serde_json::from_str(&req.send()?.text()?)?) + Ok(serde_json::from_str(&req.send().await?.text().await?)?) } } |