linera-client 0.15.19

A library for writing Linera client applications.
Documentation
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! This module provides a convenient library for writing a Linera client application.

#![recursion_limit = "256"]
#![allow(async_fn_in_trait)]

pub mod chain_listener;
pub mod client_context;
pub use client_context::ClientContext;
#[cfg(not(web))]
pub mod client_metrics;
pub mod client_options;
pub use client_options::Options;
pub mod config;
mod error;
pub mod util;

#[cfg(not(web))]
pub mod benchmark;

#[cfg(test)]
mod unit_tests;

pub use error::Error;