Skip to content

liquidscorpio/chrono-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chrono Utilities

Rust crates.io docs.rs

Documentation: https://docs.rs/chrono-utilities/
Current Version: 0.0.0-alpha1

Provides utility functions to manipulate chrono dates. Only NaiveDate is supported as of now. Support for naive and timezone aware DateTime coming soon.

The crate provides the following:

Transition APIs

Transition a chrono struct into a future or previous date using standardised methods like start_of_pred_iso8601_week() which provides the date on which the previous week starts. Such functions are provided for week, month and year. View the docs for full API and more examples.

Installation

In your Cargo.toml add the following:

[dependencies]
chrono-utilities = "0.0.0-alpha1"

Feature Matrix

Feature Status
Transition APIs for NaiveDate
Transition APIs for Aware Dates 𐄂
Transition APIs for NaiveDateTime 𐄂
Transition APIs for Aware DateTime 𐄂

Code Sample

use chrono::NaiveDate;
use chrono_utils::naive::DateTransitions;

let d = NaiveDate::from_ymd(2019, 3, 31);
assert_eq!(d.start_of_succ_year().unwrap(), NaiveDate::from_ymd(2020, 1, 1));

let d1 = NaiveDate::from_ymd(1996, 2, 23);
assert_eq!(d1.last_day_of_month(), 29);

let d2 = NaiveDate::from_ymd(1999, 10, 17);
assert_eq!(d2.start_of_pred_iso8601_week().unwrap(), NaiveDate::from_ymd(1999, 10, 4));

Licence

Dual licensed under Apache 2.0 and MIT. (Same as Rust and chrono.)

About

Utility functions for Rust's date time library chrono

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages