b53fb068f5
Closes: #33 `Duration` is stored as microseconds internally. The original code caused an overflow by... ```rust Duration::from_millis(u64::MAX); ``` ...which caused `u64::MAX` to be multiplied by 1000 and overflow.