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

This commit is contained in:
ASR-ASU 2024-09-07 15:44:25 +02:00 committed by GitHub
parent 9816b402fc
commit 14a8902374
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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");