uhttp 0.20.0

Simple http server for humans
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;

use tokio::io::AsyncRead;
use tokio::io::AsyncReadExt;

pub async fn bytes(reader: &mut (impl AsyncRead + Unpin)) -> io::Result<Vec<u8>> {
  let mut body = Vec::new();
  reader.read_to_end(&mut body).await?;
  Ok(body)
}