superstac-core 0.1.0

Domain models, storage trait, and shared utilities for superstac federated STAC search.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Domain models, storage trait, and shared utilities for superstac.
//!
//! - [`models`]: `Catalog`, `Provider`, `Settings`, etc.
//! - [`storages`]: the [`storages::factory::StorageBackend`] trait and the
//!   in-memory implementation.
//! - [`errors`]: typed error variants used across the workspace.

pub mod storages;
pub mod models;
pub mod errors;
pub mod utils;