-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http client/server library for may #24
Comments
well, currently there is not much http clients/severs that implemented on top of And for the hyper porting is ready to use without change the code that depends on I'd like to see more adoptions based on |
Since most of the frameworks/clients out there are attached to specific network libraries, I would recommend to create ones that relay on And as mentioned before, patience. IMO is better to do it right than fast. |
Yes underlying libraries should not depend on specific transports but as you say on some abstract streams. Websocket already has https://github.com/snapview/tungstenite-rs/ so it works naturally. Aren't there enough pieces of http (http + httpparse crates) to make a similar library for http? |
Yup, Rust already have all pieces that we need. Shouldn't be too complicate to join |
That's what I was thinking as well. And if such a library exists it will benefit |
Write a http client on top of |
I start the may_http project. It's in a very beginning stage. So far the performance of simple hello world is better than latest hyper branch which is based on future. I welcome anybody to contribute the project. The code logic is simple and straight forward. |
What's the recommended library for http client/server for may? If none exists perhaps this should be top priority to increase adoption?
The text was updated successfully, but these errors were encountered: