zino-http 0.15.1

HTTP requests and responses for zino.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![doc(html_favicon_url = "https://zino.cc/assets/zino-logo.png")]
#![doc(html_logo_url = "https://zino.cc/assets/zino-logo.svg")]
#![allow(async_fn_in_trait)]

mod helper;

pub mod request;
pub mod response;
pub mod timing;

#[cfg(feature = "inertia")]
pub mod inertia;

#[cfg(feature = "view")]
pub mod view;