Преглед изворни кода

Use of async_std::task::sleep instead of tokio::time::sleep (#2939)

ASR-ASU пре 9 месеци
родитељ
комит
14a8902374
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      examples/clock.rs

+ 1 - 1
examples/clock.rs

@@ -1,8 +1,8 @@
 //! A simple little clock that updates the time every few milliseconds.
 //!
 
+use async_std::task::sleep;
 use dioxus::prelude::*;
-use tokio::time::sleep;
 use web_time::Instant;
 
 const STYLE: &str = asset!("./examples/assets/clock.css");