update licenses

specify in mcp server that rfc 3339 must be used
This commit is contained in:
2026-06-09 19:08:57 +02:00
parent 5100a0ccdb
commit 78ba2b7b3d
9 changed files with 4468 additions and 88 deletions
@@ -11,7 +11,10 @@ pub(in crate::caldav) struct McpEvent {
pub(in crate::caldav) summary: String,
pub(in crate::caldav) description: Option<String>,
pub(in crate::caldav) location: Option<String>,
#[schemars(description = "as RFC 3339")]
pub(in crate::caldav) start: Option<DateTime<chrono::Local>>,
#[schemars(description = "as RFC 3339")]
pub(in crate::caldav) end: Option<DateTime<chrono::Local>>,
}
+2
View File
@@ -10,7 +10,9 @@ use serde::{Deserialize, Serialize};
pub(in crate::caldav) struct McpTodo {
pub(in crate::caldav) summary: String,
pub(in crate::caldav) description: Option<String>,
#[schemars(description = "as RFC 3339")]
pub(in crate::caldav) start: Option<DateTime<chrono::Local>>,
#[schemars(description = "as RFC 3339")]
pub(in crate::caldav) due: Option<DateTime<chrono::Local>>,
}