Skip to main content

vote_commitment_tree_client/
lib.rs

1//! Remote client library for the Zally vote commitment tree.
2//!
3//! Provides [`HttpTreeSyncApi`] — an HTTP implementation of the
4//! [`TreeSyncApi`](vote_commitment_tree::TreeSyncApi) trait that connects to
5//! a running Zally chain node's REST API.
6//!
7//! Used by the `vote-tree-cli` binary and available as a library for
8//! integration in other Rust tools.
9
10#[cfg(feature = "http")]
11pub mod http_sync_api;
12pub mod types;