Skip to content

Commit

Permalink
Update dev-dependency derive_more to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored and Majored committed Sep 7, 2024
1 parent 74f3a97 commit c87312e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ sanitize-filename = "0.5"
actix-web = "4"
actix-multipart = "0.7"
futures = "0.3"
derive_more = "0.99"
derive_more = { version = "1.0", features = ["display", "error"] }
uuid = { version = "1", features = ["v4", "serde"] }
2 changes: 1 addition & 1 deletion examples/actix_multipart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mod inner {
const TMP_DIR: &str = "./tmp/";

#[derive(Debug, Display, Error)]
#[display(fmt = "An error occurred during ZIP creation which was logged to stderr.")]
#[display("An error occurred during ZIP creation which was logged to stderr.")]
struct CreationError;

impl ResponseError for CreationError {}
Expand Down

0 comments on commit c87312e

Please sign in to comment.