2 stable releases

1.0.1 Aug 30, 2024
1.0.0 Aug 29, 2024

#306 in Date and time

LGPL-3.0

26KB
545 lines

Persian Date (Rust)

Persian Date for Rust based on chrono date-time library

Installation

Add this dependency in your Cargo.toml file

[dependencies]
persian_date = "1.0.1"

Usage

use persian_date::structure::PDate;

let pdate = PDate::now(); // initialize date
println!("{}",pdate); // formatted date
println!("{}",pdate.year()); // jalali year
println!("{}",pdate.month()); // jalali month
println!("{}",pdate.day()); // jalali day
println!("{}",pdate.day_of_week()); // day of week from saturday
// and more ...

Full documentation in docs.ir

Formatting

Date formatting in this library is similar to chrono

pdate.format("%Y-%m-%d %H:%M:%S") 

Dependencies

~1.4–2.1MB
~28K SLoC