summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/error.rs12
-rw-r--r--src/lib.rs5
2 files changed, 9 insertions, 8 deletions
diff --git a/src/error.rs b/src/error.rs
index 28f39e0..d98e716 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -1,16 +1,18 @@
-#[derive(Debug, Clone, Eq, PartialEq, Fail)]
+use thiserror::Error;
+
+#[derive(Debug, Clone, Error)]
pub enum VObjectErrorKind {
- #[fail(display = "Parser error: {}", _0)]
+ #[error("Parser error: {}", _0)]
ParserError(String),
- #[fail(display = "Not a Vcard")]
+ #[error("Not a Vcard")]
NotAVCard,
- #[fail(display = "Not a Icalendar: {}", _0)]
+ #[error("Not a Icalendar: {}", _0)]
NotAnICalendar(String),
#[cfg(feature = "timeconversions")]
- #[fail(display = "{}", _0)]
+ #[error("{}", _0)]
ChronoError(::chrono::format::ParseError),
}
diff --git a/src/lib.rs b/src/lib.rs
index 1aadb8e..4bd1193 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,8 @@
-#[macro_use]
-extern crate failure;
-
#[cfg(feature = "timeconversions")]
extern crate chrono;
+extern crate thiserror;
+
#[macro_use] pub mod param;
#[macro_use] mod util;