bump dependencies

This commit is contained in:
Robin Appelman 2019-03-28 18:56:14 +01:00
commit 5346518168
3 changed files with 539 additions and 103 deletions

View file

@ -44,7 +44,7 @@ fn push_event(event: DebouncedEvent, con: &Connection, list: &str) -> RedisResul
match format_event(event) {
Some(formatted_event) => {
println!("{}", formatted_event);
return con.lpush(list, formatted_event);
con.lpush(list, formatted_event)
}
None => Ok(()),
}