Skip to content

Commit

Permalink
docs(readme): update recommend server frameworks (hyperium#3232)
Browse files Browse the repository at this point in the history
Suggest Axum first, and mention that warp uses a functional paradigm.

Closes hyperium#3222

Signed-off-by: Sven Pfennig <s.pfennig@reply.de>
  • Loading branch information
avdb13 authored and 0xE282B0 committed Jan 16, 2024
1 parent 1d181e5 commit 9ca104d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ Note: We do not yet support SSL / TLS connections in hyper_wasi yet.

**Get started** by looking over the [guides](https://hyper.rs/guides/1/).

## "Low-level"

hyper is a relatively low-level library, meant to be a building block for
libraries and applications.

If you are looking for a convenient HTTP client, then you may wish to consider
[reqwest](https://github.com/seanmonstar/reqwest).
If you are not sure what HTTP server to choose, then you may want to consider [axum](https://github.com/tokio-rs/axum) or [warp](https://github.com/seanmonstar/warp), the latter taking a more functional approach.
Both are built on top of this library.

## Contributing

To get involved, take a look at [CONTRIBUTING](CONTRIBUTING.md).
Expand Down

0 comments on commit 9ca104d

Please sign in to comment.