
Nanofish
A lightweight, no_std HTTP client for embedded systems built on top of Embassy networking.
Nanofish provides a simple HTTP client implementation that works on constrained environments with no heap allocation, making it suitable for microcontrollers and other embedded systems. It supports all standard HTTP methods and provides a clean async API for making HTTP requests.
Features
- Full
no_stdcompatibility with no heap allocations - Built on Embassy for async networking
- Support for all standard HTTP methods (GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, TRACE, CONNECT)
- Automatic handling of common headers
- DNS resolution
- Timeout handling and retries
Example
use ;
use Stack;
async
Convenience Methods
Nanofish provides convenience methods for all standard HTTP verbs:
get(endpoint, headers)post(endpoint, headers, body)put(endpoint, headers, body)delete(endpoint, headers)patch(endpoint, headers, body)head(endpoint, headers)options(endpoint, headers)trace(endpoint, headers)connect(endpoint, headers)
Each method returns a Result<HttpClientResponse, Error>.
License
The MIT License (MIT) Copyright © 2025 rttf.dev
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.