Skip to content

Commit

Permalink
add Clone to Error
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Huseby <dwh@linuxprogrammer.org>
  • Loading branch information
dhuseby committed Dec 2, 2023
1 parent 89d4d1c commit e955bf5
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
@@ -1,6 +1,6 @@
[package]
name = "multitrait"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
authors = ["Dave Huseby <dwh@linuxprogrammer.org>"]
description = "Multiformat traits"
Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use thiserror::Error;

/// Errors generated by the numeric type impls
#[derive(Debug, Error, PartialEq)]
#[derive(Clone, Debug, Error, PartialEq)]
#[non_exhaustive]
pub enum Error {
/// an unsigned-varint error
Expand Down

0 comments on commit e955bf5

Please sign in to comment.