dayjs

Crates.iodayjs
lib.rsdayjs
version0.1.1
sourcesrc
created_at2024-10-24 04:35:23.073898
updated_at2024-10-24 05:38:44.115722
descriptiondayjs api for rust
homepage
repositoryhttps://github.com/guobin211/dayjs
max_upload_size
id1420854
size15,346
guobin211 (guobin211)

documentation

https://docs.rs/dayjs

README

dayjs

dayjs for rust

Usage

fn main() {
    // default
    let now = dayjs::dayjs();
    // timestamp
    let date3 = dayjs::from_timestamp(1729746657208);
    // GMT
    let date1 = dayjs::from_str("Thu, 24 Oct 2024 05:12:08 GMT");
    // ISO
    let date2 = dayjs::from_str("2024-10-24T05:12:15.395Z");
}
Commit count: 3

cargo fmt