kundli-rs 0.2.0

A Rust library for calculating astrological kundli charts using the Swiss Ephemeris.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Public modules for kundli calculation.
//!
//! Most consumers should prefer the crate-root exports such as
//! [`crate::calculate_kundli`], [`crate::AstroRequest`], and
//! [`crate::KundliConfig`].
//! These modules remain available for lower-level access, but internal pipeline
//! details are intentionally kept crate-private.

pub mod astro;
pub mod calculate;
pub mod config;
pub mod derive;
pub mod error;
pub mod model;