aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs3
3 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 6d36301..989a4b7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -959,7 +959,7 @@ dependencies = [
[[package]]
name = "pomd"
-version = "1.2.0"
+version = "1.3.0"
dependencies = [
"async-std",
"confy",
diff --git a/Cargo.toml b/Cargo.toml
index 790d314..271cfdb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pomd"
-version = "1.2.0"
+version = "1.3.0"
edition = "2021"
[dependencies]
diff --git a/src/main.rs b/src/main.rs
index af1eea7..992748c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,6 @@
use std::{
sync::{Arc, Mutex},
- time::Duration,
+ time::Duration, thread::sleep,
};
use pausable_clock::{PausableClock, PausableInstant};
@@ -164,5 +164,6 @@ async fn main() -> Result<()> {
.await?;
loop {
pomd.lock().unwrap().update();
+ sleep(Duration::from_millis(100));
}
}