zemen-0.1.0 has been yanked.
Zemen - የ ኢትዮጵያ ቀን መቁጠሪያ
Introduction
A date conversion crate to convert between ethiopian and gregorian dates. We
have a custom struct to represent ethiopian date, i.e. Zemen, and we are
using an external crate time, and specifically time::Date, to represent
gregorian dates.
The crate uses the Beyene-Kudlek algorithm to convert between jdn (Julian Day number) and ethiopic calender. And the time crate to convert between jdn (Julian Day number) and gregorian date.
Installation
Since the crate is still under heavy development, and me being a beginner rust
programmer, it won't be published on crates.io yet. For now you can clone the
repo and link to it in your Cargo.toml like so.
...snip...
[]
= { = "path/to/zemen/repo" }
...snip...
Usage
Basic Usage
You can find the documantation at here.
use zemen;
Conversion
use time;
use zemen;