Skip to main content

vedaksha_astro/
lib.rs

1// Copyright © 2026 ArthIQ Labs LLC. All rights reserved.
2// Vedākṣha — Vision from Vedas
3// Licensed under BSL 1.1. See LICENSE file.
4// Contact: info@arthiq.net | https://vedaksha.net
5
6//! # vedaksha-astro
7//!
8//! Western astrology engine for the Vedākṣha platform.
9//!
10//! This crate implements classical and modern Western astrological
11//! computation:
12//!
13//! - **House systems** — Placidus, Koch, Equal, Whole Sign, Porphyry,
14//!   Regiomontanus, and Campanus
15//! - **Aspects** — major and minor aspects with configurable orbs
16//! - **Dignities** — essential and accidental dignities, receptions
17//! - **Chart computation** — natal, transit, synastry, and composite charts
18
19#![cfg_attr(not(feature = "std"), no_std)]
20#![deny(unsafe_code)]
21#![warn(clippy::all, clippy::pedantic)]
22#![allow(clippy::module_name_repetitions)]
23#![allow(clippy::similar_names)]
24#![allow(clippy::manual_let_else)]
25#![allow(clippy::question_mark)]
26
27pub mod aspects;
28pub mod chart;
29pub mod composite;
30pub mod dignity;
31pub mod houses;
32pub mod sidereal;
33pub mod synastry;
34pub mod transits;