npdatetime 0.2.4

Astronomical calculator for Bikram Sambat calendar based on solar and lunar positions. High-performance Nepali (Bikram Sambat) datetime library with multi-language bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared core types for the npdatetime library
//!
//! Provides the primary date and datetime structures used across both
//! lookup-based and astronomical calculation methods.

pub mod date;
pub mod error;
pub mod format;
pub mod parse;

pub use date::NepaliDate;
pub use error::{NpdatetimeError, Result};