Skip to content

Commit

Permalink
clean up 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 12, 2023
1 parent 6be512e commit 87df85a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 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.8"
version = "0.1.9"
edition = "2021"
authors = ["Dave Huseby <dwh@linuxprogrammer.org>"]
description = "Common traits for multiformats types"
Expand Down
4 changes: 1 addition & 3 deletions src/error.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use thiserror::Error;

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

0 comments on commit 87df85a

Please sign in to comment.