ethane 1.0.2

An alternative web3 implementation with the aim of being slim and simple
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Implementation of http transport

#[cfg(feature = "blocking")]
mod blocking;
#[cfg(feature = "blocking")]
pub use blocking::Http;

#[cfg(feature = "non-blocking")]
mod non_blocking;
#[cfg(feature = "non-blocking")]
pub use non_blocking::Http as AsyncHttp;