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.
16pub mod client;
17
18/// Response types for the [`TxCache`].
19///
20/// [`TxCache`]: crate::client::TxCache
21pub mod types;