Peltoche / ical-rs

Rust parser for ics (rfc5545) and vcard (rfc6350)
Apache License 2.0
110 stars 21 forks source link

Even more highlevel than PropertyParser #42

Closed ModProg closed 1 year ago

ModProg commented 3 years ago

I need a crate to parse ical more high level than just to properties.

I was basically thinking of something like:

struct VEvent {
start: Option<TimeStamp>,
end: Option<TimeStamp>,
summary: ...
// Unsuported Properties
properties: Vec<Property>,
}

Is this something that can be implemented in the scope of this crate, as a PR? Or should I create a high-level crate depending on ical-rs?

Peltoche commented 1 year ago

Hello @ModProg ,

Sorry for the big delay. This package is in maintenance mode, this means that no further features will be added by me but I gladly accept contributions if you want.

ModProg commented 1 year ago

No worries, I'll probably revisit this some time in the future, but my project where I would have used that is currently on hold as well.