tokio-rs / tokio-minihttp

Protocol implementation experimentations
Apache License 2.0
448 stars 50 forks source link

Setup dependency #35

Closed kination closed 5 years ago

kination commented 5 years ago

Hello~ I'm trying to implement simple web server with this project, but cannot find how to setup dependency in cargo file. I tried to search library in https://crates.io/ but there was no module tokio-minihttp.

How could I do?

Thanks.

carllerche commented 5 years ago

You should not use this for anything real. It is mostly a demo. You probably want to use hyper instead.

kination commented 5 years ago

@carllerche thanks!