bumb dependencies

This commit is contained in:
Robin Appelman 2023-06-29 17:44:19 +02:00
commit 7430db6c5b
5 changed files with 758 additions and 326 deletions

View file

@ -28,7 +28,7 @@ impl EventList {
}
fn next(&mut self) -> Option<Event> {
let raw: Option<String> = self.redis.rpop(&self.list).unwrap();
let raw: Option<String> = self.redis.rpop(&self.list, None).unwrap();
raw.map(|raw| serde_json::from_str(&raw).unwrap())
}
}