avail-rust-client 0.5.1

Avail Rust SDK client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! RPC client implementations for different transport layers and testing scenarios.

pub mod online_client;

#[cfg(all(feature = "reqwest", any(test, feature = "mocks")))]
pub mod mock_client;

#[cfg(feature = "reqwest")]
pub mod reqwest_client;
pub use online_client::OnlineClient;
#[cfg(feature = "reqwest")]
pub use reqwest_client::ReqwestClient;