Skip to main content

signet_tx_cache/
lib.rs

1//! Signet Transaction Cache types and client.
2
3#![warn(
4    missing_copy_implementations,
5    missing_debug_implementations,
6    missing_docs,
7    unreachable_pub,
8    clippy::missing_const_for_fn,
9    rustdoc::all
10)]
11#![cfg_attr(not(test), warn(unused_crate_dependencies))]
12#![deny(unused_must_use, rust_2018_idioms)]
13#![cfg_attr(docsrs, feature(doc_cfg))]
14
15/// The [`TxCache`] client.
16mod client;
17pub use client::TxCache;
18
19/// Response types for the [`TxCache`].
20///
21/// [`TxCache`]: crate::client::TxCache
22pub mod types;
23
24/// Errors returned by the [`TxCache`] client.
25pub mod error;
26pub use error::TxCacheError;