Răsfoiți Sursa

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

ASR-ASU 9 luni în urmă
părinte
comite
14a8902374
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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");