Astrolabe is a date and time library for Rust which aims to be feature rich, lightweight (zero dependencies) and easy-to-use. It is build around DateTime
, a wrapper around std::time::SystemTime
which implements formatting and manipulation functions.
SystemTime
into basically any string format)DateTime::add
or DateTime::sub
to create a new, modified DateTime
instanceA basic example which demonstrates creating, formatting and manipulating a DateTime
instance.
```rust use astrolabe::{DateTime, Precision, Unit};
// Create a DateTime instance from year, month, and days (day of month) let datetime = DateTime::fromymd(2022, 5, 2).unwrap();
// Use the format function to freely format your DateTime instance asserteq!("2022/05/02", datetime.format("yyyy/MM/dd").unwrap());
// Create a new instance with a modified DateTime // The previous instance is not modified and is still in scope let modifieddt = datetime.add(11, Unit::Hour).add(23, Unit::Min);
asserteq!("2022/05/02 11:23:00", modifieddt.format("yyyy/MM/dd HH:mm:ss").unwrap());
asserteq!("2022-05-02T11:23:00Z", modifieddt.format_rfc3339(Precision::Seconds));
``
To see all implementations for the
DateTime` struct, check out it's documentation.
This crate uses the Rust 2021 Edition and requires at least version 1.56
.
Licensed under either of * Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) * MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.