shepherd-rs 0.2.0

Shepherd is a resilient, non-blocking orchestrator that persistently transforms and delivers data—built for remote, compute-heavy workloads.
Documentation
1
2
3
4
5
6
7
8
9
10
//! # A module for database abstractions
//!
//! This module provides database abstractions for storing transformation and
//! consumption data. It includes implementations for in-memory and PostgreSQL
//! databases.

pub mod db;
pub mod inmem;
pub mod postgresql;
pub use db::Database;