1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-07-15 19:58:05 +00:00

Update dependencies

This commit is contained in:
2021-02-19 17:08:13 +01:00
parent 243351cae2
commit 6ab6278bd4
7 changed files with 23 additions and 46 deletions

@ -36,7 +36,7 @@ struct SuccessMessage {
pub struct PostFile {
pub name: String,
pub buff: bytes::Bytes,
pub buff: actix_web::web::Bytes,
}
/// Single request body value

@ -1,8 +1,7 @@
use core::fmt;
use std::error;
use std::error::Error;
use serde::export::Formatter;
use std::fmt::Formatter;
/// Simple rust error
///
@ -37,4 +36,5 @@ impl fmt::Display for ExecError {
}
}
impl error::Error for ExecError {}