linera-exporter 0.15.21

Block exporter for the Linera protocol.
Documentation
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! Block exporter for the Linera protocol.

#![deny(missing_docs)]

/// Shared data types used across the exporter.
pub mod common;
pub mod config;
/// The gRPC service that serves exported blocks.
pub mod exporter_service;
/// Prometheus metrics for the exporter.
#[cfg(with_metrics)]
pub mod metrics;
/// The run loops that drive block export to each destination.
pub mod runloops;
/// The persistent state tracking export progress.
pub mod state;
/// Storage backends for the exporter.
pub mod storage;
/// Assorted helper utilities.
pub mod util;

#[cfg(test)]
mod test_utils;