rkt 0.6.0

Web framework with a focus on usability, security, extensibility, and speed. (Community Fork)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Types that map to concepts in HTTP.
//!
//! This module exports types that map to HTTP concepts or to the underlying
//! HTTP library when needed.

mod cookies;

#[doc(inline)]
pub use rkt_http::*;

#[doc(inline)]
pub use cookies::*;