lib.rs 607 B
Newer Older
//! Shared utilities for `jsonrpsee`.

#![warn(missing_docs)]

#[cfg(all(feature = "hyper13", feature = "hyper14"))]
compile_error!("feature `hyper13` and `hyper14` are mutably exclusive");

#[cfg(not(any(feature = "hyper13", feature = "hyper14")))]
compile_error!("feature `hyper13` or `hyper14` must be enabled for this crate");

#[cfg(all(feature = "hyper13", not(feature = "hyper14")))]
extern crate hyper13 as hyper;

#[cfg(all(feature = "hyper14", not(feature = "hyper13")))]
extern crate hyper14 as hyper;

/// Helpers for HTTP.
pub mod http;

/// Helpers for JSON-RPC servers.
pub mod server_utils;