caldir-cli 0.11.0

CLI for interacting with your local caldir directory and syncing with external calendar providers
1
2
3
4
5
use chrono::{NaiveDate, ParseResult};

pub fn parse_date(input: &str) -> ParseResult<NaiveDate> {
    NaiveDate::parse_from_str(input, "%Y-%m-%d")
}