// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Vallés Puig, Ramon
//! High-level SPICE kernel context for astronomical and spacecraft geometry.
//!
//! ## Scientific scope
//!
//! This module provides the user-facing SPICE context for ephemeris state
//! queries, frame registration, limited frame rotation composition, and basic
//! time-offset support backed by SPICE kernels.
//!
//! ## Technical scope
//!
//! V1 layers `formats::spice` parsers into a loadable kernel set with NAIF-like
//! priority rules. It supports SPK state lookups plus selected FK, PCK text,
//! LSK, SCLK, CK, and IK metadata use cases.
//!
//! ## References
//!
//! - NAIF SPICE Overview: <https://naif.jpl.nasa.gov/naif/aboutspice.html>
//! - NAIF. *Kernel Required Reading*.
pub use SpiceContext;
pub use SpiceContextError;
pub use FrameRegistry;
pub use KernelSet;