1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright © 2026 ArthIQ Labs LLC. All rights reserved.
// Vedākṣha — Vision from Vedas
// Licensed under BSL 1.1. See LICENSE file.
// Contact: info@arthiq.net | https://vedaksha.net
//! # Vedākṣha
//!
//! Umbrella crate that re-exports every public sub-crate under a single
//! dependency. Add `vedaksha` to your `Cargo.toml` and access the full
//! engine through one import.
//!
//! ```toml
//! [dependencies]
//! vedaksha = "3"
//! ```
//!
//! # v3.0.0 surface changes
//!
//! - `vedaksha::emit` is gone; the emitters now live at
//! `vedaksha::graph::emitters` (the umbrella always enables the
//! `emitters` feature on `vedaksha-graph`).
//! - `vedaksha::locale` is gated by the `locale` feature on this crate.
pub use vedaksha_astro as astro;
pub use vedaksha_ephem_core as ephem;
pub use vedaksha_graph as graph;
pub use vedaksha_math as math;
pub use vedaksha_vedic as vedic;
/// Localization tables (planet/sign/nakshatra names in 7 languages).
///
/// Folded in from the standalone `vedaksha-locale` crate (v2.x).
/// Enable via the `locale` feature.
/// Convenience re-exports for the most common entry points.