mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 11:42:25 +00:00
Move ical-related stuff to dedicated rustical_ical crate
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
use actix_web::{ResponseError, http::StatusCode};
|
||||
|
||||
use crate::calendar::CalDateTimeError;
|
||||
use rustical_ical::CalDateTimeError;
|
||||
|
||||
#[derive(Debug, thiserror::Error)]
|
||||
pub enum Error {
|
||||
@@ -14,7 +13,7 @@ pub enum Error {
|
||||
InvalidData(String),
|
||||
|
||||
#[error(transparent)]
|
||||
RRuleParserError(#[from] crate::calendar::rrule::ParserError),
|
||||
RRuleParserError(#[from] rustical_ical::rrule::ParserError),
|
||||
|
||||
#[error("Read-only")]
|
||||
ReadOnly,
|
||||
|
||||
Reference in New Issue
Block a user