feather_runtime/lib.rs
1//! # Feather Runtime
2//!
3//! Low-level runtime and HTTP primitives for the Feather web framework.
4//!
5//! Feather-Runtime provides:
6//! - Synchronous HTTP request/response handling
7//! - Lightweight coroutine-based concurrency using the `may` crate
8//! - Zero-copy networking for high performance
9//! - Thread-safe server implementation
10//!
11//! ## Core Components
12//!
13//! - [`http`] - HTTP request and response types
14//! - [`runtime`] - Server runtime and coroutine support
15
16pub mod http;
17pub mod runtime;
18
19pub use ::http::{HeaderMap, HeaderName, HeaderValue, Method, Uri};