siglog 0.1.0

A minimal Tessera-compatible transparency log server
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Storage layer for the Tessera transparency log.
//!
//! This module provides:
//! - OpenDAL-based storage for static tiles and checkpoint
//! - SeaORM-based database storage for sequencing state

pub mod database;
pub mod opendal;

pub use database::Database;
pub use opendal::TileStorage;