mirror of
https://framagit.org/veretcle/scootaloo.git
synced 2025-07-21 09:31:19 +02:00
feat: use megalodon instead of elefren
This commit is contained in:
@@ -5,7 +5,7 @@ use std::{
|
||||
fmt::{Display, Formatter, Result},
|
||||
};
|
||||
|
||||
use elefren::Error as elefrenError;
|
||||
use megalodon::error::Error as megalodonError;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct ScootalooError {
|
||||
@@ -34,8 +34,8 @@ impl From<Box<dyn Error>> for ScootalooError {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<elefrenError> for ScootalooError {
|
||||
fn from(error: elefrenError) -> Self {
|
||||
ScootalooError::new(&format!("Error in elefren crate: {}", error))
|
||||
impl From<megalodonError> for ScootalooError {
|
||||
fn from(error: megalodonError) -> Self {
|
||||
ScootalooError::new(&format!("Error in megalodon crate: {}", error))
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user