git2-time-chrono-ext 1.0.0

Rust extension library to convert `git2::Time` to `chrono`
Documentation
1
2
3
4
5
6
7
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("Invalid TimeZone {offset_minutes}")]
    InvalidTimeZone { offset_minutes: i32 },
    #[error("Time {time:?} isn't mappable")]
    TimeNotMappable { time: git2::Time },
}