This project is an attempt to work with timezones. An example use case is to know how much time you have left for an event.
N.B: For now, it uses Utc timezone only.
Usage:
cargo run -- -l 12 -m 3 -d 19 -o 4 -y 2023
-l
is a compulsory argument that must be passed in. It represents the hour of your event.
-m
is a compulsory argument that must also be passed in. It represents the minute of your event.
-o
is an optional argument. It represents the month of your event with a digit value [0..11].
-d
is an optional argument. It represents the day of your event with a digit value [1..31].
-y
is an optional argument. It represents the year of your event with any four digit value.