Use smol async for daemon and daemon-user

This commit is contained in:
Luke D. Jones
2022-06-06 14:20:34 +12:00
parent d4b2d2f403
commit de43a37e9e
6 changed files with 56 additions and 112 deletions

View File

@@ -124,7 +124,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.detach();
loop {
future::block_on(executor.tick());
smol::block_on(executor.tick());
}
}