Crates.io | feather-runtime |
lib.rs | feather-runtime |
version | |
source | src |
created_at | 2025-04-20 12:10:26.138909+00 |
updated_at | 2025-05-08 08:54:54.223335+00 |
description | Web Server Runtime for Feather |
homepage | |
repository | |
max_upload_size | |
id | 1641663 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Feather Runtime is a lightweight, multithreaded HTTP server engine for Feather. It provides enhanced control over low-level server operations and replaces tiny-http
, which is no longer maintained.
🚀 Multithreaded Request Handling – Efficiently handles multiple connections using a thread pool.
🔄 Graceful Shutdown – Cleanly shuts down on signal
🌍 Dynamic HTTP Responses – Easily generate responses based on incoming requests.
⚡ Buffered I/O – Optimized performance with BufReader
and BufWriter
.
I built Feather Runtime because I wanted greater control over the low-level aspects of the framework. tiny-http
, the library Feather was originally based on, is no longer maintained, making it necessary to develop a more flexible and future-proof solution.
Feather Runtime ensures a modern, efficient, and reliable HTTP server experience tailored for Feather.
If you're contributing to Feather but don't want to mess with low-level server internals, you can mostly ignore this subcrate. Feather Runtime is designed to handle the core HTTP processing while Feather itself provides higher-level abstractions. If you have a feature request or a problem open a Issue for it