aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2021-01-22 21:11:48 -0500
committerGitHub <noreply@github.com>2021-01-22 21:11:48 -0500
commit990cce7267dae9bdd37ef772db2edeef2a39365b (patch)
treedbf370c4af264f662c5acb28ea090876edbcccfd /src/app
parent6456d75502d89986f8f05dad7965291fd0e5c933 (diff)
downloadxesite-990cce7267dae9bdd37ef772db2edeef2a39365b.tar.xz
xesite-990cce7267dae9bdd37ef772db2edeef2a39365b.zip
Use Tokio 1 (#306)
* upgrade all the things Signed-off-by: Christine Dodrill <me@christine.website> * build(deps): bump serde from 1.0.118 to 1.0.120 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.120. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.120) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * fix Signed-off-by: Christine Dodrill <me@christine.website> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/poke.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/poke.rs b/src/app/poke.rs
index dd6f9fe..eddb85e 100644
--- a/src/app/poke.rs
+++ b/src/app/poke.rs
@@ -1,6 +1,6 @@
use color_eyre::eyre::Result;
use std::{env, time::Duration};
-use tokio::time::delay_for;
+use tokio::time::sleep as delay_for;
#[instrument(err)]
pub async fn the_cloud() -> Result<()> {