- Notifications
You must be signed in to change notification settings - Fork290
async fn(Request) -> Result<Response, Error>
License
tower-rs/tower
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Tower is a library of modular and reusable components for building robustnetworking clients and servers.
Tower aims to make it as easy as possible to build robust networking clients andservers. It is protocol agnostic, but is designed around a request / responsepattern. If your protocol is entirely stream based, Tower may not be a good fit.
Tower will keep a rolling MSRV (minimum supported Rust version) policy ofatleast 6 months. When increasing the MSRV, the new Rust version must have beenreleased at least six months ago. The current MSRV is 1.64.0.
If you're brand new to Tower and want to start with the basics we recommend youcheck out some of ourguides.
This project is licensed under theMIT license.
Unless you explicitly state otherwise, any contribution intentionally submittedfor inclusion in Tower by you, shall be licensed as MIT, without any additionalterms or conditions.
About
async fn(Request) -> Result<Response, Error>