Crates.io | dayjs |
lib.rs | dayjs |
version | 0.1.1 |
source | src |
created_at | 2024-10-24 04:35:23.073898 |
updated_at | 2024-10-24 05:38:44.115722 |
description | dayjs api for rust |
homepage | |
repository | https://github.com/guobin211/dayjs |
max_upload_size | |
id | 1420854 |
size | 15,346 |
dayjs for rust
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");
}