4 releases (2 stable)

1.1.0 Mar 25, 2023
1.0.0 Jan 6, 2017
0.1.1 Mar 31, 2016
0.1.0 Mar 30, 2016

#202 in Date and time

Download history 134/week @ 2024-03-13 122/week @ 2024-03-20 86/week @ 2024-03-27 139/week @ 2024-04-03 112/week @ 2024-04-10 61/week @ 2024-04-17 86/week @ 2024-04-24 133/week @ 2024-05-01 95/week @ 2024-05-08 94/week @ 2024-05-15 206/week @ 2024-05-22 120/week @ 2024-05-29 178/week @ 2024-06-05 110/week @ 2024-06-12 164/week @ 2024-06-19 226/week @ 2024-06-26

700 downloads per month
Used in 9 crates (6 directly)

MIT license

8KB
138 lines

Computus

crates.io Documentation

Computus Easter calculation in Rust

Usage

Add this to your Cargo.toml:

[dependencies]
computus = "1.1.0"

You can find when Easter Sunday is for a particular year with:

// For Gregorian calendars
let easter = computus::gregorian(2016).unwrap();
assert_eq!((easter.month, easter.day), (3, 27));
// For Julian calendars
let easter = computus::julian(2016).unwrap();
assert_eq!((easter.month, easter.day), (4, 18));
// With `chrono` feature
#[cfg(feature = "chrono")] {
    use chrono::Datelike;
    let easter = computus::gregorian_naive(2023).unwrap();
    assert_eq!((easter.month(), easter.day()), (4, 9));
}

lib.rs:

Overview

Calculate the date of Easter Sunday in Gregorian/Julian calendar using the computus method.

Features

Optional features:

  • chrono: Enable directly producing a chrono::NaiveDate

Example

You can find when Easter is for a particular year with:

// For Gregorian calendars
let easter = computus::gregorian(2016).unwrap();
assert_eq!((easter.month, easter.day), (3, 27));
// For Julian calendars
let easter = computus::julian(2016).unwrap();
assert_eq!((easter.month, easter.day), (4, 18));
// With `chrono` feature
#[cfg(feature = "chrono")] {
    use chrono::Datelike;
    let easter = computus::gregorian_naive(2023).unwrap();
    assert_eq!((easter.month(), easter.day()), (4, 9));
}

Dependencies

~0–280KB