Skip to main content

xalen_vedic/
lib.rs

1/// Ashtakavarga point computation and analysis.
2pub mod ashtakavarga;
3/// Ashtottari dasha system (108-year cycle).
4pub mod ashtottari;
5/// Jaimini Chara Dasha system.
6pub mod chara_dasha;
7pub mod compatibility;
8pub mod dasha;
9pub mod dignity;
10/// Divisional (Varga) chart computation (D-2 through D-60).
11pub mod divisional;
12/// Dosha detection (Mangal/Kuja Dosha, Kaal Sarp, etc.).
13pub mod dosha;
14/// Gandanta (water-fire sign junction) detection and severity.
15pub mod gandanta;
16/// Multi-language names (Hindi, Sanskrit, Tamil, Telugu) for planets,
17/// rashis, nakshatras, tithis, yogas, karanas, and varas.
18pub mod i18n;
19/// Jaimini astrology (Chara Karakas, Pada, Arudha).
20pub mod jaimini;
21pub mod kp;
22/// Mrityu Bhaga (death degrees) — inauspicious planetary degrees per sign.
23pub mod mrityu_bhaga;
24/// Muhurta (electional) timing analysis.
25pub mod muhurta;
26/// Nadi astrology techniques and significations.
27pub mod nadi;
28pub mod nakshatra;
29pub mod panchang;
30/// Panchang TRANSITION/END times — when the current tithi, nakshatra, yoga, and
31/// karana begin and end (root-finding to ~second precision over a caller-supplied
32/// Sun/Moon ephemeris closure).
33pub mod panchang_transitions;
34/// Prashna (horary) astrology techniques.
35pub mod prashna;
36/// Pushkara Navamsa and Pushkara Bhaga (auspicious degrees/navamsas).
37pub mod pushkara;
38pub mod rashi;
39/// Retrograde detection and motion status classification.
40pub mod retrograde;
41pub mod shadbala;
42/// Sudarshana Chakra Dasha system.
43pub mod sudarshana;
44/// Tajaka (annual horoscopy) yogas and techniques.
45pub mod tajaka;
46/// Transit analysis and Gochara (transit effects).
47pub mod transit;
48/// Sub-planetary bodies (Gulika, Mandi, Dhuma, etc.).
49pub mod upagraha;
50/// Varshaphal (annual chart/solar return) analysis.
51pub mod varshaphal;
52/// Classical planetary yoga detection (Pancha Mahapurusha, Raja, etc.).
53pub mod yoga;
54/// Yogini dasha system (36-year cycle).
55pub mod yogini;