Update crates and change to UUID

This commit is contained in:
2022-08-18 21:24:16 +02:00
parent 9227cdef9a
commit f2cdbe0638
11 changed files with 1835 additions and 144 deletions

View File

@ -172,3 +172,14 @@ impl From<tokio::sync::mpsc::error::SendError<Event>> for Error {
}
}
}
impl From<uuid::Error> for Error {
fn from(error: uuid::Error) -> Self {
Error {
kind: ErrorKind::UsimpError,
class: ErrorClass::ClientError,
msg: None,
desc: Some(error.to_string()),
}
}
}