siderust-archive 0.1.1

Reusable Rust bindings for the Siderust Archive: manifests, checksums, provenance, and runtime download of scientific datasets (IERS time data, kernels, planetary theories).
# `archive/src/frames`

This module is the placeholder dataset family for SPICE FK-style reference
frame definitions.

## Contents

- `manifest.toml` is a skeleton manifest with no payload entries yet.
- `mod.rs` and `refs.rs` reserve the public Rust module shape.

## Inspect

```bash
sed -n '1,220p' archive/src/frames/manifest.toml
```

## Update

When frame kernels are added, place the FK-style payloads under this directory,
declare them in `manifest.toml`, and record provenance, `sha256`, `bytes`,
validity, and references.

Validate after changes:

```bash
cd archive
cargo run -p archive-validate -- MANIFEST.toml
cargo check --features frames
```

## Use

Enable the `frames` feature. The current module exposes references only until
real frame-definition payloads are migrated.