aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2021-05-22Support base64-encoded event `eid`sTeddy Wing
Event invitation emails include event ids encoded as "eid"s. These are base64-encoded strings of: {event_id} {user_email} Add a new function that decodes the ID from the base64 string if the input ID is base64-encoded. Otherwise, return the input event ID.
2021-05-21Parse command line options manuallyTeddy Wing
Decided to parse command line options manually so that if multiple event response status flags are passed, only the last one will be used.
2021-05-21Add command line option parsingTeddy Wing
2021-05-18Get a calendar event from Google CalendarTeddy Wing
Try out the `calendar3` API to get a single event from Google Calendar. Mostly copied the example code from the `google-calendar3` documentation: https://docs.rs/google-calendar3/2.0.4+20210327/google_calendar3/index.html#a-complete-example Modified it to get a single event, and to use the OAuth2 secret from `~/.google-service-cli/calendar3-secret.json`.
2021-05-18Generate new Rust v1.51.0 projectTeddy Wing
With: $ cargo init --bin