cursus 0.9.0

Library crate for the cursus release management CLI
Documentation
1
2
3
4
5
6
//! General-purpose utility helpers.

/// Returns today's date as an ISO 8601 string (`YYYY-MM-DD`) in UTC.
pub fn today_iso_date() -> String {
	chrono::Utc::now().format("%Y-%m-%d").to_string()
}